summaryrefslogtreecommitdiff
path: root/src/localconsts.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/localconsts.h')
-rw-r--r--src/localconsts.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/localconsts.h b/src/localconsts.h
index 62c6bcfbe..5037aa595 100644
--- a/src/localconsts.h
+++ b/src/localconsts.h
@@ -104,9 +104,11 @@
#ifndef ENABLE_CILKPLUS
#define A_CONST __attribute__ ((const))
#define A_PURE __attribute__ ((pure))
+#define A_INLINE __attribute__ ((always_inline))
#else
#define A_CONST
#define A_PURE
+#define A_INLINE
#endif
#ifdef __INTEL_COMPILER