aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGenCXX/array-operator-delete-call.cpp
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2011-10-13 22:29:44 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2011-10-13 22:29:44 +0000
commit9ca5c425826329d5b23300bbc8a1a7c10a19c64d (patch)
tree169ef835495dccb2c58f5ccf6745f180842a90c3 /clang/test/CodeGenCXX/array-operator-delete-call.cpp
parentc6bba3e46d572fb00bc98b930d9057f25cde0f13 (diff)
downloadllvm-9ca5c425826329d5b23300bbc8a1a7c10a19c64d.zip
llvm-9ca5c425826329d5b23300bbc8a1a7c10a19c64d.tar.gz
llvm-9ca5c425826329d5b23300bbc8a1a7c10a19c64d.tar.bz2
Update all tests other than Driver/std.cpp to use -std=c++11 rather than
-std=c++0x. Patch by Ahmed Charles! llvm-svn: 141900
Diffstat (limited to 'clang/test/CodeGenCXX/array-operator-delete-call.cpp')
-rw-r--r--clang/test/CodeGenCXX/array-operator-delete-call.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGenCXX/array-operator-delete-call.cpp b/clang/test/CodeGenCXX/array-operator-delete-call.cpp
index 41b0118..1b23c4d 100644
--- a/clang/test/CodeGenCXX/array-operator-delete-call.cpp
+++ b/clang/test/CodeGenCXX/array-operator-delete-call.cpp
@@ -1,7 +1,7 @@
// REQUIRES: x86-registered-target,x86-64-registered-target
-// RUN: %clang_cc1 -triple x86_64-apple-darwin -std=c++0x -S %s -o %t-64.s
+// RUN: %clang_cc1 -triple x86_64-apple-darwin -std=c++11 -S %s -o %t-64.s
// RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
-// RUN: %clang_cc1 -triple i386-apple-darwin -std=c++0x -S %s -o %t-32.s
+// RUN: %clang_cc1 -triple i386-apple-darwin -std=c++11 -S %s -o %t-32.s
// RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
extern "C" int printf(...);