Test case for r117075. Radar 6635085.
authorStuart Hastings <stuart@apple.com>
Thu, 21 Oct 2010 22:43:32 +0000 (22:43 +0000)
committerStuart Hastings <stuart@apple.com>
Thu, 21 Oct 2010 22:43:32 +0000 (22:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117079 91177308-0d34-0410-b5e6-96231b3b80d8

test/FrontendObjC++/2010-10-21-NoExceptions.mm [new file with mode: 0644]

diff --git a/test/FrontendObjC++/2010-10-21-NoExceptions.mm b/test/FrontendObjC++/2010-10-21-NoExceptions.mm
new file mode 100644 (file)
index 0000000..d0d8596
--- /dev/null
@@ -0,0 +1,12 @@
+// 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
+}