[llvm-commits] CVS: llvm/test/Regression/CodeGen/PowerPC/eqv-andc-orc-nor.ll

Chris Lattner lattner at cs.uiuc.edu
Sat Mar 25 15:12:59 PST 2006



Changes in directory llvm/test/Regression/CodeGen/PowerPC:

eqv-andc-orc-nor.ll updated: 1.3 -> 1.4
---
Log message:

Correct the vandc testcase


---
Diffs of the changes:  (+3 -3)

 eqv-andc-orc-nor.ll |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/test/Regression/CodeGen/PowerPC/eqv-andc-orc-nor.ll
diff -u llvm/test/Regression/CodeGen/PowerPC/eqv-andc-orc-nor.ll:1.3 llvm/test/Regression/CodeGen/PowerPC/eqv-andc-orc-nor.ll:1.4
--- llvm/test/Regression/CodeGen/PowerPC/eqv-andc-orc-nor.ll:1.3	Sat Mar 25 17:04:34 2006
+++ llvm/test/Regression/CodeGen/PowerPC/eqv-andc-orc-nor.ll	Sat Mar 25 17:12:47 2006
@@ -80,9 +80,9 @@
         %tmp = cast <4 x float> %tmp to <4 x int>
         %tmp2 = load <4 x float>* %Q
         %tmp2 = cast <4 x float> %tmp2 to <4 x int>
-        %tmp3 = and <4 x int> %tmp, %tmp2
-        %tmp4 = xor <4 x int> %tmp3, < int -1, int -1, int -1, int -1 >
-        %tmp4 = cast <4 x int> %tmp4 to <4 x float>
+        %tmp4 = xor <4 x int> %tmp2, < int -1, int -1, int -1, int -1 >
+        %tmp3 = and <4 x int> %tmp, %tmp4
+        %tmp4 = cast <4 x int> %tmp3 to <4 x float>
         store <4 x float> %tmp4, <4 x float>* %P
         ret void
 }






More information about the llvm-commits mailing list