diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2017-05-11 19:17:54 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2017-05-11 19:17:54 +0000 |
commit | 2cbd1f6c9fd9792bc5a7e04a5b5defdb64b08c86 (patch) | |
tree | 04d81fd65bb5119d66b3354ba4c211e6e74a7568 | |
parent | 722363727d2953f62b5ccbf90da4218054583961 (diff) | |
download | bcm5719-llvm-2cbd1f6c9fd9792bc5a7e04a5b5defdb64b08c86.tar.gz bcm5719-llvm-2cbd1f6c9fd9792bc5a7e04a5b5defdb64b08c86.zip |
Work around different -std= default for PS4 target.
llvm-svn: 302818
-rw-r--r-- | clang/test/CodeGenCXX/array-default-argument.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/array-default-argument.cpp b/clang/test/CodeGenCXX/array-default-argument.cpp index 8376b4f340c..a07e3908392 100644 --- a/clang/test/CodeGenCXX/array-default-argument.cpp +++ b/clang/test/CodeGenCXX/array-default-argument.cpp @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -emit-llvm -o - %s -triple %itanium_abi_triple | FileCheck %s -// RUN: %clang_cc1 -emit-llvm -o - %s -triple %itanium_abi_triple -fexceptions -fcxx-exceptions | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-EH +// RUN: %clang_cc1 -emit-llvm -o - %s -triple %itanium_abi_triple -std=c++98 -fexceptions -fcxx-exceptions | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-EH struct A { A(); |