2003-08-24 14:16:58 +02:00
|
|
|
; Test that we can inline a simple function, turning the calls in it into invoke
|
2003-08-24 08:55:07 +02:00
|
|
|
; instructions
|
|
|
|
|
2009-09-11 20:01:28 +02:00
|
|
|
; RUN: opt < %s -inline -S | \
|
2007-04-15 10:30:33 +02:00
|
|
|
; RUN: not grep {call\[^e\]}
|
2003-08-24 08:55:07 +02:00
|
|
|
|
2008-03-01 10:15:35 +01:00
|
|
|
declare void @might_throw()
|
2003-08-24 08:55:07 +02:00
|
|
|
|
2008-03-01 10:15:35 +01:00
|
|
|
define internal void @callee() {
|
|
|
|
call void @might_throw( )
|
|
|
|
ret void
|
2003-08-24 08:55:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
; caller returns true if might_throw throws an exception...
|
2008-03-01 10:15:35 +01:00
|
|
|
define i32 @caller() {
|
|
|
|
invoke void @callee( )
|
|
|
|
to label %cont unwind label %exc
|
|
|
|
|
|
|
|
cont: ; preds = %0
|
|
|
|
ret i32 0
|
|
|
|
|
|
|
|
exc: ; preds = %0
|
|
|
|
ret i32 1
|
2003-08-24 08:55:07 +02:00
|
|
|
}
|