blob: d4061655008c7958751a4e181e7a6cb8790ee59f [file] [log] [blame]
Duncan Sands34c88472008-09-08 11:07:35 +00001; RUN: llvm-as < %s | opt -argpromotion -disable-output
2
3define internal fastcc i32 @term_SharingList(i32* %Term, i32* %List) nounwind {
4entry:
5 br i1 false, label %bb, label %bb5
6
7bb: ; preds = %entry
8 %0 = call fastcc i32 @term_SharingList( i32* null, i32* %List ) nounwind ; <i32> [#uses=0]
9 unreachable
10
11bb5: ; preds = %entry
12 ret i32 0
13}
14
15define i32 @term_Sharing(i32* %Term) nounwind {
16entry:
17 br i1 false, label %bb.i, label %bb14
18
19bb.i: ; preds = %entry
20 %0 = call fastcc i32 @term_SharingList( i32* null, i32* null ) nounwind ; <i32> [#uses=0]
21 ret i32 1
22
23bb14: ; preds = %entry
24 ret i32 0
25}