adjust for signedness change. I'd appreciate it if an ARM flavored person
authorChris Lattner <sabre@nondot.org>
Tue, 8 Sep 2009 23:44:53 +0000 (23:44 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 8 Sep 2009 23:44:53 +0000 (23:44 +0000)
could look at this: the top undefined bits of an immediate shouldn't affect
isel (cmp vs cmp.w)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81288 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/Thumb2/thumb2-cmp.ll

index 68f38773aba4671d5eb6f0b1da7bf907c8d26e57..2048258af38f62600e45e7c02b8d15f5eeefa66f 100644 (file)
@@ -19,7 +19,7 @@ define i1 @f2(i32 %a) {
 ; 0xcc00cc00 = 3422604288
 define i1 @f3(i32 %a) {
 ; CHECK: f3:
-; CHECK: cmp.w r0, #3422604288
+; CHECK: cmp r0, #-872363008
     %tmp = icmp ne i32 %a, 3422604288
     ret i1 %tmp
 }
@@ -27,7 +27,7 @@ define i1 @f3(i32 %a) {
 ; 0xdddddddd = 3722304989
 define i1 @f4(i32 %a) {
 ; CHECK: f4:
-; CHECK: cmp.w r0, #3722304989
+; CHECK: cmp r0, #-572662307
     %tmp = icmp ne i32 %a, 3722304989
     ret i1 %tmp
 }