]> granicus.if.org Git - llvm/commitdiff
[NFC] Fixed test
authorDavid Bolvansky <david.bolvansky@gmail.com>
Wed, 4 Sep 2019 12:43:14 +0000 (12:43 +0000)
committerDavid Bolvansky <david.bolvansky@gmail.com>
Wed, 4 Sep 2019 12:43:14 +0000 (12:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@370888 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/sub-and-or-not-xor.ll

index 23dcb890339686468e171a96993f2cf0da4955c1..e9bdcb11727069cedc15e56e59146314b8b028a4 100644 (file)
@@ -91,11 +91,11 @@ define <2 x i32> @sub_to_xor_vec(<2 x i32> %x, <2 x i32> %y) {
 ; CHECK-LABEL: @sub_to_xor_vec(
 ; CHECK-NEXT:    [[OR:%.*]] = or <2 x i32> [[X:%.*]], [[Y:%.*]]
 ; CHECK-NEXT:    [[AND:%.*]] = and <2 x i32> [[Y]], [[X]]
-; CHECK-NEXT:    [[SUB:%.*]] = sub <2 x i32> [[OR]], [[AND]]
+; CHECK-NEXT:    [[SUB:%.*]] = sub <2 x i32> [[AND]], [[OR]]
 ; CHECK-NEXT:    ret <2 x i32> [[SUB]]
 ;
   %or = or <2 x i32> %x, %y
   %and = and <2 x i32> %y, %x
-  %sub = sub <2 x i32> %or, %and
+  %sub = sub <2 x i32> %and, %or
   ret <2 x i32> %sub
 }