aboutsummaryrefslogtreecommitdiff
path: root/test/Other/2008-10-15-MissingSpace.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Other/2008-10-15-MissingSpace.ll')
-rw-r--r--test/Other/2008-10-15-MissingSpace.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Other/2008-10-15-MissingSpace.ll b/test/Other/2008-10-15-MissingSpace.ll
index bc78e84a0afc..37b3f0cb94da 100644
--- a/test/Other/2008-10-15-MissingSpace.ll
+++ b/test/Other/2008-10-15-MissingSpace.ll
@@ -1,14 +1,14 @@
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
; PR2894
declare void @g()
-define void @f() {
+define void @f() personality i32 (...)* @__gxx_personality_v0 {
; CHECK: invoke void @g()
; CHECK: to label %d unwind label %c
invoke void @g() to label %d unwind label %c
d:
ret void
c:
- %exn = landingpad {i8*, i32} personality i32 (...)* @__gxx_personality_v0
+ %exn = landingpad {i8*, i32}
cleanup
ret void
}