diff options
author | Dan Gohman <sunfish@mozilla.com> | 2014-02-28 16:18:47 -0800 |
---|---|---|
committer | Dan Gohman <sunfish@mozilla.com> | 2014-03-03 13:43:41 -0800 |
commit | 76ad462b1882706edc7ed300f6d0cf6cb61b80c5 (patch) | |
tree | e3a9da218b65ad8a73d8379ca2d703f00885cbd0 /tests/cases/aliasbitcast3_noasm.ll | |
parent | 226dd0d169bb1cf4253cb4ffcaadc1137e53b3dc (diff) |
Tidy up and fix several tests in tests/cases.
Diffstat (limited to 'tests/cases/aliasbitcast3_noasm.ll')
-rw-r--r-- | tests/cases/aliasbitcast3_noasm.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cases/aliasbitcast3_noasm.ll b/tests/cases/aliasbitcast3_noasm.ll index 4ff969e3..19d3ff14 100644 --- a/tests/cases/aliasbitcast3_noasm.ll +++ b/tests/cases/aliasbitcast3_noasm.ll @@ -11,7 +11,7 @@ target triple = "i386-pc-linux-gnu" ; [#uses=2] define void @original() { entry: - %0 = call i32 bitcast (i32 (i8*)* @puts to i32 (i32*)*)(i8* getelementptr inbounds ([14 x i8]* @.str, i32 0, i32 0)) ; [#uses=0] + %0 = call i32 bitcast (i32 (i8*)* @puts to i32 (i32*)*)(i32* bitcast (i8* getelementptr inbounds ([14 x i8]* @.str, i32 0, i32 0) to i32*)) ; [#uses=0] br label %return return: ; preds = %entry @@ -24,6 +24,6 @@ declare i32 @puts(i8*) ; [#uses=0] define i32 @main() { entry: - call void @thriceremoved() + call void @thriceremoved(i32 0) ret i32 0 } |