summaryrefslogtreecommitdiff
path: root/test/FrontendObjC++/2010-10-21-NoExceptions.mm
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendObjC++/2010-10-21-NoExceptions.mm')
-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
-}