summaryrefslogtreecommitdiff
path: root/test/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-05 22:21:18 +0000
committerChris Lattner <sabre@nondot.org>2010-01-05 22:21:18 +0000
commit7a34d6c450035dad9d494502c7c742137c42958e (patch)
tree03b005434ac7b02b9278956788327fe8cae9f86e /test/Transforms
parent274ad68cc7d4e8dc9f02eb993e53d68ddcf258ee (diff)
downloadllvm-7a34d6c450035dad9d494502c7c742137c42958e.tar.gz
llvm-7a34d6c450035dad9d494502c7c742137c42958e.tar.bz2
llvm-7a34d6c450035dad9d494502c7c742137c42958e.tar.xz
more rearrangement and cleanup, fix my test failure.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92792 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms')
-rw-r--r--test/Transforms/InstCombine/cast.ll8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Transforms/InstCombine/cast.ll b/test/Transforms/InstCombine/cast.ll
index 3c2f28116e..a6c6795e84 100644
--- a/test/Transforms/InstCombine/cast.ll
+++ b/test/Transforms/InstCombine/cast.ll
@@ -55,8 +55,8 @@ define i32 @test6(i64 %A) {
%c1 = trunc i64 %A to i32 ; <i32> [#uses=1]
%res = bitcast i32 %c1 to i32 ; <i32> [#uses=1]
ret i32 %res
-; CHECK: %res = trunc i64 %A to i32
-; CHECK: ret i32 %res
+; CHECK: trunc i64 %A to i32
+; CHECK-NEXT: ret i32
}
define i64 @test7(i1 %A) {
@@ -71,8 +71,8 @@ define i64 @test8(i8 %A) {
%c1 = sext i8 %A to i64 ; <i64> [#uses=1]
%res = bitcast i64 %c1 to i64 ; <i64> [#uses=1]
ret i64 %res
-; CHECK: %res = sext i8 %A to i64
-; CHECK: ret i64 %res
+; CHECK: = sext i8 %A to i64
+; CHECK-NEXT: ret i64
}
define i16 @test9(i16 %A) {