Temporarily revert r117079; it broke a tester. Radar 6635085.
authorStuart Hastings <stuart@apple.com>
Fri, 22 Oct 2010 18:44:22 +0000 (18:44 +0000)
committerStuart Hastings <stuart@apple.com>
Fri, 22 Oct 2010 18:44:22 +0000 (18:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117122 91177308-0d34-0410-b5e6-96231b3b80d8

test/FrontendObjC++/2010-10-21-NoExceptions.mm [deleted file]

diff --git a/test/FrontendObjC++/2010-10-21-NoExceptions.mm b/test/FrontendObjC++/2010-10-21-NoExceptions.mm
deleted file mode 100644 (file)
index d0d8596..0000000
+++ /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
-}