Skip to content
Snippets Groups Projects
Commit 790b9ed9 authored by James Willis's avatar James Willis
Browse files

Remove compiler-specific conditions.

parent d031934c
No related branches found
No related tags found
1 merge request!404Cache auto vec
......@@ -70,18 +70,9 @@
* @param type Type of array
* @param alignment The alignment in bytes of the array.
*/
#if defined(__ICC)
#define swift_align_and_restrict_information(array, ptr, type, alignment) \
type *restrict array = ptr; \
__assume_aligned(array, alignment);
#elif defined(__GNUC__)
#define swift_align_and_restrict_information(array, ptr, type, alignment) \
type *restrict array = ptr; \
array = __builtin_assume_aligned(array, alignment);
#else
#define swift_align_and_restrict_information(array, ptr, type, alignment) \
type *restrict array = ptr;
#endif
swift_align_information(array, alignment);
/**
* @brief Macro to tell the compiler that a given number is 0 modulo a given
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment