diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-08-31 21:44:24 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-08-31 21:44:24 +0000 |
commit | a29a6b9a6cc1683ddb922d05f3736cfee434afe7 (patch) | |
tree | f087d634791f2d7bf9a60e5b3c156a2f86d3510d /test/Other | |
parent | 78ae1f794764899605f55ff235e7aa9207cacf5d (diff) | |
download | external_llvm-a29a6b9a6cc1683ddb922d05f3736cfee434afe7.zip external_llvm-a29a6b9a6cc1683ddb922d05f3736cfee434afe7.tar.gz external_llvm-a29a6b9a6cc1683ddb922d05f3736cfee434afe7.tar.bz2 |
Update to new EH scheme.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138906 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Other')
-rw-r--r-- | test/Other/2008-10-15-MissingSpace.ll | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/Other/2008-10-15-MissingSpace.ll b/test/Other/2008-10-15-MissingSpace.ll index a61fa61..d16ea72 100644 --- a/test/Other/2008-10-15-MissingSpace.ll +++ b/test/Other/2008-10-15-MissingSpace.ll @@ -3,5 +3,10 @@ declare void @g() define void @f() { invoke void @g() to label %c unwind label %c - c: ret void +c: + %exn = landingpad {i8*, i32} personality i32 (...)* @__gxx_personality_v0 + cleanup + ret void } + +declare i32 @__gxx_personality_v0(...) |