diff options
author | Chris Robinson <[email protected]> | 2017-02-13 07:36:49 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-02-13 07:36:49 -0800 |
commit | 841d0bb893e19dbe6f95bd80a3ac50997f9e8f0d (patch) | |
tree | f8c1f073a3597c5e7dd2586260263892b99f5904 /config.h.in | |
parent | 65f9b2792c50ae730a9f16680f931a9884e2b02c (diff) |
Porperly check for and use __builtin_assume_aligned
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index 4f22e5c8..d46c69ac 100644 --- a/config.h.in +++ b/config.h.in @@ -5,6 +5,9 @@ /* 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} + /* Explicit hidden visibility attribute */ #define HIDDEN_DECL ${HIDDEN_DECL} |