aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-03-19 15:02:56 -0400
committerJack Lloyd <[email protected]>2017-03-19 15:02:56 -0400
commit93964e82788a75bf88613f2fa1f43bc924e0e2fc (patch)
treef84e3bc758d3585306db6029fc626245734dd68d /src
parent1d9587c4601136d824c7d68940b74bd8da0a3688 (diff)
Fix further compiler macro bug exposed by #921
Diffstat (limited to 'src')
-rw-r--r--src/lib/utils/compiler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/utils/compiler.h b/src/lib/utils/compiler.h
index 7b3dbe6bc..898412501 100644
--- a/src/lib/utils/compiler.h
+++ b/src/lib/utils/compiler.h
@@ -141,7 +141,7 @@
#elif defined(BOTAN_TARGET_HAS_OPENMP)
#define BOTAN_PARALLEL_SIMD_FOR _Pragma("omp simd") for
#elif defined(BOTAN_BUILD_COMPILER_IS_GCC)
- #define BOTAN_PARALLEL_FOR _Pragma("GCC ivdep") for
+ #define BOTAN_PARALLEL_SIMD_FOR _Pragma("GCC ivdep") for
#else
#define BOTAN_PARALLEL_SIMD_FOR for
#endif