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 | e336599f6dede84df7dae2f374840a6b540d3a4d (patch) | |
tree | a71210e094277582fcca908bfcf6afaec2535d30 /llvm/test/Other | |
parent | 55fb73a6e0f7c8e151134cfbf97c6b88d40e9348 (diff) | |
download | bcm5719-llvm-e336599f6dede84df7dae2f374840a6b540d3a4d.tar.gz bcm5719-llvm-e336599f6dede84df7dae2f374840a6b540d3a4d.zip |
Update to new EH scheme.
llvm-svn: 138906
Diffstat (limited to 'llvm/test/Other')
-rw-r--r-- | llvm/test/Other/2008-10-15-MissingSpace.ll | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/llvm/test/Other/2008-10-15-MissingSpace.ll b/llvm/test/Other/2008-10-15-MissingSpace.ll index a61fa614213..d16ea72c2bd 100644 --- a/llvm/test/Other/2008-10-15-MissingSpace.ll +++ b/llvm/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(...) |