diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-10-16 05:04:10 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-10-16 05:04:10 +0000 |
commit | b10ce9f4fcff51bebc9efaeda2fa15b6478c6aec (patch) | |
tree | f4cd9eaf241fc48f63cdce43284cf889c8994d15 /test/CodeGenObjC | |
parent | a3b3f45c18c32c62c0f340ea31c67ea6360aae68 (diff) |
Revert r116656, "IRgen/Obj-C/NeXT: Fix the IR signature for
objc_exception_rethrow, so we don't...", since something is actually trying to
call this with the wrong signature (!). Unfortunately I don't understand the new
EH infrastructure well enough to fix it immediately.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@116660 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenObjC')
-rw-r--r-- | test/CodeGenObjC/method-signatures.m | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/CodeGenObjC/method-signatures.m b/test/CodeGenObjC/method-signatures.m deleted file mode 100644 index b03570950a..0000000000 --- a/test/CodeGenObjC/method-signatures.m +++ /dev/null @@ -1,14 +0,0 @@ -// Check method signatures for synthesized runtime functions. -// -// RUN: %clang_cc1 -triple x86_64-apple-darwin10 \ -// RUN: -fexceptions -fobjc-nonfragile-abi2 -emit-llvm -o %t %s -// RUN: FileCheck < %t %s - -// CHECK: declare void @objc_exception_rethrow() -void f1(void); -void f0() { - @try { - f1(); - } @finally { - } -} |