diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-03-06 12:27:56 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-03-06 12:27:56 +0000 |
commit | d4dbdf54387cdfc4f4134c98f39479742a246d73 (patch) | |
tree | 0504e0379565066f41d5e6d550d36a1a7563a31a /clang/test/OpenMP/predefined_macro.c | |
parent | 4a7e96e6421863f4ac09cbfe0dba046c09ea21ff (diff) | |
download | bcm5719-llvm-d4dbdf54387cdfc4f4134c98f39479742a246d73.tar.gz bcm5719-llvm-d4dbdf54387cdfc4f4134c98f39479742a246d73.zip |
[OPENMP] Updated comments and _OPENMP macro value for OpenMP 4.0 (for 'omp simd' support)
llvm-svn: 203114
Diffstat (limited to 'clang/test/OpenMP/predefined_macro.c')
-rw-r--r-- | clang/test/OpenMP/predefined_macro.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/OpenMP/predefined_macro.c b/clang/test/OpenMP/predefined_macro.c index 06f98793fb9..c9829ce4572 100644 --- a/clang/test/OpenMP/predefined_macro.c +++ b/clang/test/OpenMP/predefined_macro.c @@ -5,7 +5,7 @@ // -fopenmp=libiomp5 option is specified #ifndef _OPENMP #error "No _OPENMP macro is defined with -fopenmp option" -#elsif _OPENMP != 201107 +#elsif _OPENMP != 201307 #error "_OPENMP has incorrect value" #endif //_OPENMP #else @@ -22,7 +22,7 @@ // -fopenmp=libiomp5 option is specified #ifndef _OPENMP #error "No _OPENMP macro is defined with -fopenmp option" -#elsif _OPENMP != 201107 +#elsif _OPENMP != 201307 #error "_OPENMP has incorrect value" #endif // _OPENMP #else |