2013-02-20 15:21:42 +08:00
|
|
|
; RUN: opt < %s -deadargelim -S | FileCheck %s
|
2009-03-01 08:24:40 +08:00
|
|
|
|
|
|
|
%Ty = type <{ i32, i32 }>
|
2008-06-20 23:38:22 +08:00
|
|
|
|
|
|
|
; Check if the pass doesn't modify anything that doesn't need changing. We feed
|
|
|
|
; an unused argument to each function to lure it into changing _something_ about
|
2008-07-15 21:15:10 +08:00
|
|
|
; the function and then changing too much.
|
2008-06-20 23:38:22 +08:00
|
|
|
|
2008-07-15 22:57:01 +08:00
|
|
|
; This checks if the return value attributes are not removed
|
2013-02-20 15:21:42 +08:00
|
|
|
; CHECK: define internal zeroext i32 @test1() #0
|
2008-09-30 04:49:50 +08:00
|
|
|
define internal zeroext i32 @test1(i32 %DEADARG1) nounwind {
|
2008-07-15 22:57:01 +08:00
|
|
|
ret i32 1
|
2008-06-20 23:38:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
; This checks if the struct doesn't get non-packed
|
2013-07-14 09:50:49 +08:00
|
|
|
; CHECK-LABEL: define internal <{ i32, i32 }> @test2(
|
2008-06-20 23:38:22 +08:00
|
|
|
define internal <{ i32, i32 }> @test2(i32 %DEADARG1) {
|
|
|
|
ret <{ i32, i32 }> <{ i32 1, i32 2 }>
|
|
|
|
}
|
|
|
|
|
|
|
|
; We use this external function to make sure the return values don't become dead
|
2008-07-15 22:57:01 +08:00
|
|
|
declare void @user(i32, <{ i32, i32 }>)
|
2008-06-20 23:38:22 +08:00
|
|
|
|
|
|
|
define void @caller() {
|
2008-07-15 22:57:01 +08:00
|
|
|
%B = call i32 @test1(i32 1)
|
2008-06-20 23:38:22 +08:00
|
|
|
%C = call <{ i32, i32 }> @test2(i32 2)
|
2008-07-15 22:57:01 +08:00
|
|
|
call void @user(i32 %B, <{ i32, i32 }> %C)
|
2008-06-20 23:38:22 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2013-02-20 15:21:42 +08:00
|
|
|
; CHECK: attributes #0 = { nounwind }
|