summaryrefslogtreecommitdiff
path: root/test/FrontendObjC++
diff options
context:
space:
mode:
authorStuart Hastings <stuart@apple.com>2010-10-22 18:44:22 +0000
committerStuart Hastings <stuart@apple.com>2010-10-22 18:44:22 +0000
commitef4fc2cd6d9e1c04a13ff69ae1fd9d23f5c79d1c (patch)
tree2c3464522e5ecfcaa7b14c52e37e7afe42c53573 /test/FrontendObjC++
parent3870b750e6d8af533926138e670f4643a5953e42 (diff)
downloadllvm-ef4fc2cd6d9e1c04a13ff69ae1fd9d23f5c79d1c.tar.gz
llvm-ef4fc2cd6d9e1c04a13ff69ae1fd9d23f5c79d1c.tar.bz2
llvm-ef4fc2cd6d9e1c04a13ff69ae1fd9d23f5c79d1c.tar.xz
Temporarily revert r117079; it broke a tester. Radar 6635085.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117122 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendObjC++')
-rw-r--r--test/FrontendObjC++/2010-10-21-NoExceptions.mm12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/FrontendObjC++/2010-10-21-NoExceptions.mm b/test/FrontendObjC++/2010-10-21-NoExceptions.mm
deleted file mode 100644
index d0d8596011..0000000000
--- a/test/FrontendObjC++/2010-10-21-NoExceptions.mm
+++ /dev/null
@@ -1,12 +0,0 @@
-// RUN: %llvmgcc -fno-exceptions %s -S -emit-llvm -o - | FileCheck %s
-struct Foo
-{
- int x;
- Foo ();
-};
-Foo *test(void)
-{
- return new Foo();
- // There should be no references to any Unwinding routines under -fno-exceptions.
- // CHECK-NOT: Unwind
-}