diff options
author | David Chisnall <csdavec@swan.ac.uk> | 2012-11-07 16:50:40 +0000 |
---|---|---|
committer | David Chisnall <csdavec@swan.ac.uk> | 2012-11-07 16:50:40 +0000 |
commit | 9a837be2b947946e6918bd81016e5f6d78af5f1c (patch) | |
tree | 7709badf579f373564b9c8283bbea9fad9711841 /clang/test/CodeGenObjC/gnu-exceptions.m | |
parent | 67dc5702f879a8a19e3619c2237876fd9c2adfb0 (diff) | |
download | bcm5719-llvm-9a837be2b947946e6918bd81016e5f6d78af5f1c.tar.gz bcm5719-llvm-9a837be2b947946e6918bd81016e5f6d78af5f1c.zip |
Fix the Objective-C exception rethrow from cleanups (GNU runtimes). Note that
a bug in the inliner still causes the wrong thing to happen at -O2 and above
(PR14116).
llvm-svn: 167534
Diffstat (limited to 'clang/test/CodeGenObjC/gnu-exceptions.m')
-rw-r--r-- | clang/test/CodeGenObjC/gnu-exceptions.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenObjC/gnu-exceptions.m b/clang/test/CodeGenObjC/gnu-exceptions.m index 141747ec8d3..b7d0adbc6d6 100644 --- a/clang/test/CodeGenObjC/gnu-exceptions.m +++ b/clang/test/CodeGenObjC/gnu-exceptions.m @@ -20,7 +20,7 @@ void test0() { // CHECK: call void @log(i32 0) - // CHECK: call void @objc_exception_throw + // CHECK: resume log(0); } |