diff options
author | Stuart Hastings <stuart@apple.com> | 2010-10-22 18:44:22 +0000 |
---|---|---|
committer | Stuart Hastings <stuart@apple.com> | 2010-10-22 18:44:22 +0000 |
commit | a8c4143bf6f43ad3e313a818c49ce7bd8326ccd7 (patch) | |
tree | 411f6ea385849effeb6c24d94dfbefee97c02c9d | |
parent | 6956a60563287b9da9381fbfbc61c68be7220c2d (diff) | |
download | bcm5719-llvm-a8c4143bf6f43ad3e313a818c49ce7bd8326ccd7.tar.gz bcm5719-llvm-a8c4143bf6f43ad3e313a818c49ce7bd8326ccd7.zip |
Temporarily revert r117079; it broke a tester. Radar 6635085.
llvm-svn: 117122
-rw-r--r-- | llvm/test/FrontendObjC++/2010-10-21-NoExceptions.mm | 12 |
1 files changed, 0 insertions, 12 deletions
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 d0d8596011a..00000000000 --- 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 -} |