aboutsummaryrefslogtreecommitdiffstats
path: root/config.h.in
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-11-17 17:32:32 -0800
committerChris Robinson <[email protected]>2018-11-17 17:35:52 -0800
commit2d4ff77410d4fe647950c4e06dbe1c5536235796 (patch)
tree94a6ac1114d2c35222c752c400778192e9254d18 /config.h.in
parente5442db803b5ecac2bbbe45073e01de32431c0a5 (diff)
Remove ASSUME_ALIGNED
It's become a liability with C++ since it returns void* instead of the input pointer type, and it doesn't seem to help optimizations anyway (auto- vectorization still produces unaligned loads and stores).
Diffstat (limited to 'config.h.in')
-rw-r--r--config.h.in3
1 files changed, 0 insertions, 3 deletions
diff --git a/config.h.in b/config.h.in
index 5a85faea..9714810c 100644
--- a/config.h.in
+++ b/config.h.in
@@ -5,9 +5,6 @@
/* Define any available alignment declaration */
#define ALIGN(x) ${ALIGN_DECL}
-/* Define a built-in call indicating an aligned data pointer */
-#define ASSUME_ALIGNED(x, y) ${ASSUME_ALIGNED_DECL}
-
/* Define a restrict macro for non-aliased pointers */
#define RESTRICT ${RESTRICT_DECL}