2003-08-24 12:16:58 +00:00
|
|
|
; Test that we can inline a simple function, turning the calls in it into invoke
|
2003-08-24 06:55:07 +00:00
|
|
|
; instructions
|
|
|
|
|
2009-09-11 18:01:28 +00:00
|
|
|
; RUN: opt < %s -inline -S | \
|
2007-04-15 08:30:33 +00:00
|
|
|
; RUN: not grep {call\[^e\]}
|
2003-08-24 06:55:07 +00:00
|
|
|
|
2008-03-01 09:15:35 +00:00
|
|
|
declare void @might_throw()
|
2003-08-24 06:55:07 +00:00
|
|
|
|
2008-03-01 09:15:35 +00:00
|
|
|
define internal void @callee() {
|
|
|
|
call void @might_throw( )
|
|
|
|
ret void
|
2003-08-24 06:55:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
; caller returns true if might_throw throws an exception...
|
2008-03-01 09:15:35 +00: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 06:55:07 +00:00
|
|
|
}
|