2003-08-24 05:02:26 +00:00
|
|
|
; This checks to ensure that the inline pass deletes functions if they get
|
|
|
|
; inlined into all of their callers.
|
|
|
|
|
2009-09-11 18:01:28 +00:00
|
|
|
; RUN: opt < %s -inline -S | \
|
2008-05-01 23:50:07 +00:00
|
|
|
; RUN: not grep @reallysmall
|
2003-08-24 05:02:26 +00:00
|
|
|
|
2008-03-01 09:15:35 +00:00
|
|
|
define internal i32 @reallysmall(i32 %A) {
|
|
|
|
ret i32 %A
|
2003-08-24 05:02:26 +00:00
|
|
|
}
|
|
|
|
|
2008-03-01 09:15:35 +00:00
|
|
|
define void @caller1() {
|
|
|
|
call i32 @reallysmall( i32 5 ) ; <i32>:1 [#uses=0]
|
|
|
|
ret void
|
2003-08-24 05:02:26 +00:00
|
|
|
}
|
|
|
|
|
2008-03-01 09:15:35 +00:00
|
|
|
define void @caller2(i32 %A) {
|
|
|
|
call i32 @reallysmall( i32 %A ) ; <i32>:1 [#uses=0]
|
|
|
|
ret void
|
2003-08-24 05:02:26 +00:00
|
|
|
}
|
|
|
|
|
2008-03-01 09:15:35 +00:00
|
|
|
define i32 @caller3(i32 %A) {
|
|
|
|
%B = call i32 @reallysmall( i32 %A ) ; <i32> [#uses=1]
|
|
|
|
ret i32 %B
|
2003-08-24 05:02:26 +00:00
|
|
|
}
|
2008-03-01 09:15:35 +00:00
|
|
|
|