diff options
author | Hans Wennborg <hans@hanshq.net> | 2014-01-13 19:48:13 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2014-01-13 19:48:13 +0000 |
commit | 9125b08b523524581280896d66a010517b2d1d28 (patch) | |
tree | 9c783a66e328c8a38eed6c94adf721cdffe57fea /clang/test/PCH/cxx-reference.cpp | |
parent | 4f017ceedae8245e11ad803f5698ec8afeb8f446 (diff) | |
download | bcm5719-llvm-9125b08b523524581280896d66a010517b2d1d28.tar.gz bcm5719-llvm-9125b08b523524581280896d66a010517b2d1d28.zip |
Update tests in preparation for using the MS ABI for Win32 targets
In preparation for making the Win32 triple imply MS ABI mode,
make all tests pass in this mode, or make them use the Itanium
mode explicitly.
Differential Revision: http://llvm-reviews.chandlerc.com/D2401
llvm-svn: 199130
Diffstat (limited to 'clang/test/PCH/cxx-reference.cpp')
-rw-r--r-- | clang/test/PCH/cxx-reference.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/PCH/cxx-reference.cpp b/clang/test/PCH/cxx-reference.cpp index a1a44e6893d..a22f9aca00f 100644 --- a/clang/test/PCH/cxx-reference.cpp +++ b/clang/test/PCH/cxx-reference.cpp @@ -1,6 +1,6 @@ // Test this without pch. -// RUN: %clang_cc1 -x c++ -std=c++11 -include %S/cxx-reference.h -fsyntax-only -emit-llvm -o - %s +// RUN: %clang_cc1 -x c++ -cxx-abi itanium -std=c++11 -include %S/cxx-reference.h -fsyntax-only -emit-llvm -o - %s // Test with pch. -// RUN: %clang_cc1 -x c++ -std=c++11 -emit-pch -o %t %S/cxx-reference.h -// RUN: %clang_cc1 -x c++ -std=c++11 -include-pch %t -fsyntax-only -emit-llvm -o - %s +// RUN: %clang_cc1 -x c++ -cxx-abi itanium -std=c++11 -emit-pch -o %t %S/cxx-reference.h +// RUN: %clang_cc1 -x c++ -cxx-abi itanium -std=c++11 -include-pch %t -fsyntax-only -emit-llvm -o - %s |