diff options
Diffstat (limited to 'test/Other/2007-09-10-PassManager.ll')
-rw-r--r-- | test/Other/2007-09-10-PassManager.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Other/2007-09-10-PassManager.ll b/test/Other/2007-09-10-PassManager.ll index ded15e5..39af0d0 100644 --- a/test/Other/2007-09-10-PassManager.ll +++ b/test/Other/2007-09-10-PassManager.ll @@ -8,15 +8,15 @@ entry: br label %bb3 bb: ; preds = %bb3 - %tmp = load i32* %i, align 4 ; <i32> [#uses=1] + %tmp = load i32, i32* %i, align 4 ; <i32> [#uses=1] call void @bar( i32 %tmp ) - %tmp1 = load i32* %i, align 4 ; <i32> [#uses=1] + %tmp1 = load i32, i32* %i, align 4 ; <i32> [#uses=1] %tmp2 = add i32 %tmp1, 1 ; <i32> [#uses=1] store i32 %tmp2, i32* %i, align 4 br label %bb3 bb3: ; preds = %bb, %entry - %tmp4 = load i32* %i, align 4 ; <i32> [#uses=1] + %tmp4 = load i32, i32* %i, align 4 ; <i32> [#uses=1] %tmp5 = icmp sle i32 %tmp4, 9 ; <i1> [#uses=1] %tmp56 = zext i1 %tmp5 to i8 ; <i8> [#uses=1] %toBool = icmp ne i8 %tmp56, 0 ; <i1> [#uses=1] |