diff options
Diffstat (limited to 'test/PCH/cxx-member-init.cpp')
-rw-r--r-- | test/PCH/cxx-member-init.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/PCH/cxx-member-init.cpp b/test/PCH/cxx-member-init.cpp index 70392a2832..28206652b8 100644 --- a/test/PCH/cxx-member-init.cpp +++ b/test/PCH/cxx-member-init.cpp @@ -1,9 +1,9 @@ // Test this without pch. -// RUN: %clang_cc1 -x c++ -std=c++0x -DHEADER -DSOURCE -fsyntax-only -emit-llvm -o - %s +// RUN: %clang_cc1 -x c++ -std=c++11 -DHEADER -DSOURCE -fsyntax-only -emit-llvm -o - %s // Test with pch. -// RUN: %clang_cc1 -x c++ -std=c++0x -DHEADER -emit-pch -o %t %s -// RUN: %clang_cc1 -x c++ -std=c++0x -DHEADER -include-pch %t -fsyntax-only -emit-llvm -o - %s +// RUN: %clang_cc1 -x c++ -std=c++11 -DHEADER -emit-pch -o %t %s +// RUN: %clang_cc1 -x c++ -std=c++11 -DHEADER -include-pch %t -fsyntax-only -emit-llvm -o - %s #ifdef HEADER int n; |