Lines Matching refs:init
3 define i32 @test.signed.add.0(i32* %array, i32 %length, i32 %init) {
6 %upper = icmp slt i32 %init, %length
11 %civ = phi i32 [ %init, %entry ], [ %civ.inc, %latch ]
29 define i32 @test.signed.add.1(i32* %array, i32 %length, i32 %init) {
32 %upper = icmp sle i32 %init, %length
37 %civ = phi i32 [ %init, %entry ], [ %civ.inc, %latch ]
55 define i32 @test.unsigned.add.0(i32* %array, i32 %length, i32 %init) {
58 %upper = icmp ult i32 %init, %length
63 %civ = phi i32 [ %init, %entry ], [ %civ.inc, %latch ]
81 define i32 @test.unsigned.add.1(i32* %array, i32 %length, i32 %init) {
84 %upper = icmp ule i32 %init, %length
89 %civ = phi i32 [ %init, %entry ], [ %civ.inc, %latch ]