diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2011-10-13 22:29:44 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2011-10-13 22:29:44 +0000 |
commit | 762bb9d0ad20320b9f97a841dce57ba5e8e48b07 (patch) | |
tree | 135661847208640f8ffeee076ab802085ab3118b /test/CodeGenObjCXX/arc-move.mm | |
parent | 48a9d189bbc989369155195a4ce8c7e1c02ea02a (diff) | |
download | clang-762bb9d0ad20320b9f97a841dce57ba5e8e48b07.tar.gz |
Update all tests other than Driver/std.cpp to use -std=c++11 rather than
-std=c++0x. Patch by Ahmed Charles!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@141900 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenObjCXX/arc-move.mm')
-rw-r--r-- | test/CodeGenObjCXX/arc-move.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGenObjCXX/arc-move.mm b/test/CodeGenObjCXX/arc-move.mm index a09be88fa5..cf3051dd1f 100644 --- a/test/CodeGenObjCXX/arc-move.mm +++ b/test/CodeGenObjCXX/arc-move.mm @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -O2 -std=c++0x -disable-llvm-optzns -o - %s | FileCheck %s +// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -O2 -std=c++11 -disable-llvm-optzns -o - %s | FileCheck %s // define void @_Z11simple_moveRU8__strongP11objc_objectS2_ void simple_move(__strong id &x, __strong id &y) { |