aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-03-25 23:12:47 +0000
committerChris Lattner <sabre@nondot.org>2006-03-25 23:12:47 +0000
commit606db09644167fb5a8798e577fcfc053b4fb1dc7 (patch)
treedebb8b414a2c2af96fffca540bc9756b4e22d157
parentaf9136bc0c7ce213271495801033e332b8d38bda (diff)
downloadexternal_llvm-606db09644167fb5a8798e577fcfc053b4fb1dc7.zip
external_llvm-606db09644167fb5a8798e577fcfc053b4fb1dc7.tar.gz
external_llvm-606db09644167fb5a8798e577fcfc053b4fb1dc7.tar.bz2
Correct the vandc testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27137 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/PowerPC/eqv-andc-orc-nor.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/PowerPC/eqv-andc-orc-nor.ll b/test/CodeGen/PowerPC/eqv-andc-orc-nor.ll
index acf5212..d2be3c9 100644
--- a/test/CodeGen/PowerPC/eqv-andc-orc-nor.ll
+++ b/test/CodeGen/PowerPC/eqv-andc-orc-nor.ll
@@ -80,9 +80,9 @@ void %VANDC(<4 x float>* %P, <4 x float>* %Q) {
%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
}