diff options
author | Jack Lloyd <[email protected]> | 2017-03-19 15:01:58 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-03-19 15:01:58 -0400 |
commit | 1d9587c4601136d824c7d68940b74bd8da0a3688 (patch) | |
tree | dd5de6dbad3bd4afa0a12dbe557a724579d201fa /src/lib/utils/compiler.h | |
parent | 6bfc86924d6d20f8cdeb832f40be224a03d00858 (diff) | |
parent | e0088980e29333e48771d5d4cd1df75c54b7d7ce (diff) |
Merge GH #921 Fix compiler macro mixup
Diffstat (limited to 'src/lib/utils/compiler.h')
-rw-r--r-- | src/lib/utils/compiler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/utils/compiler.h b/src/lib/utils/compiler.h index ed8fad9de..7b3dbe6bc 100644 --- a/src/lib/utils/compiler.h +++ b/src/lib/utils/compiler.h @@ -140,7 +140,7 @@ #define BOTAN_PARALLEL_SIMD_FOR _Pragma("simd") for #elif defined(BOTAN_TARGET_HAS_OPENMP) #define BOTAN_PARALLEL_SIMD_FOR _Pragma("omp simd") for -#elif defined(BOTAN_TARGET_COMPILER_IS_GCC) +#elif defined(BOTAN_BUILD_COMPILER_IS_GCC) #define BOTAN_PARALLEL_FOR _Pragma("GCC ivdep") for #else #define BOTAN_PARALLEL_SIMD_FOR for |