diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-10-08 14:34:59 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-10-08 14:34:59 +0000 |
commit | ae03d070243d50c5182f7072dc350c6c45f7cfd4 (patch) | |
tree | 8faef4f134a8ee85696826e1c115a0f84e96da03 | |
parent | 69a595ec2f38b9f00d2c01c81b5bfd8576453204 (diff) | |
download | llvm-ae03d070243d50c5182f7072dc350c6c45f7cfd4.zip llvm-ae03d070243d50c5182f7072dc350c6c45f7cfd4.tar.gz llvm-ae03d070243d50c5182f7072dc350c6c45f7cfd4.tar.bz2 |
Fix test OpenMP/parallel_firstprivate_codegen.cpp
Fixed compatibility issues with MSVC mode and ARM target.
llvm-svn: 219309
-rw-r--r-- | clang/test/OpenMP/parallel_firstprivate_codegen.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/OpenMP/parallel_firstprivate_codegen.cpp b/clang/test/OpenMP/parallel_firstprivate_codegen.cpp index d740ef9..c7aa168 100644 --- a/clang/test/OpenMP/parallel_firstprivate_codegen.cpp +++ b/clang/test/OpenMP/parallel_firstprivate_codegen.cpp @@ -1,6 +1,6 @@ -// RUN: %clang_cc1 -verify -fopenmp=libiomp5 -x c++ -emit-llvm %s -o - | FileCheck %s -// RUN: %clang_cc1 -fopenmp=libiomp5 -x c++ -std=c++11 -triple x86_64-unknown-unknown -emit-pch -o %t %s -// RUN: %clang_cc1 -fopenmp=libiomp5 -x c++ -triple x86_64-unknown-unknown -std=c++11 -include-pch %t -verify %s -emit-llvm -o - | FileCheck %s +// RUN: %clang_cc1 -verify -fopenmp=libiomp5 -x c++ -triple %itanium_abi_triple -emit-llvm %s -o - | FileCheck %s +// RUN: %clang_cc1 -fopenmp=libiomp5 -x c++ -std=c++11 -triple %itanium_abi_triple -emit-pch -o %t %s +// RUN: %clang_cc1 -fopenmp=libiomp5 -x c++ -triple %itanium_abi_triple -std=c++11 -include-pch %t -verify %s -emit-llvm -o - | FileCheck %s // expected-no-diagnostics #ifndef HEADER #define HEADER |