From a8c4143bf6f43ad3e313a818c49ce7bd8326ccd7 Mon Sep 17 00:00:00 2001 From: Stuart Hastings Date: Fri, 22 Oct 2010 18:44:22 +0000 Subject: [PATCH] Temporarily revert r117079; it broke a tester. Radar 6635085. llvm-svn: 117122 --- llvm/test/FrontendObjC++/2010-10-21-NoExceptions.mm | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 llvm/test/FrontendObjC++/2010-10-21-NoExceptions.mm diff --git a/llvm/test/FrontendObjC++/2010-10-21-NoExceptions.mm b/llvm/test/FrontendObjC++/2010-10-21-NoExceptions.mm deleted file mode 100644 index d0d8596011a9..000000000000 --- a/llvm/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 -}