diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2011-09-12 21:24:07 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2011-09-12 21:24:07 +0000 |
commit | 457d53d9cedb2add5bb80dc7c77a8bcc602877a2 (patch) | |
tree | d74bde38bda1edc2d8f3d27adaf0e912f2a2f473 /test/CodeGen/X86/avx-blend.ll | |
parent | fd92d2e106acfbf13ed29b5d15f3a690cd8699b2 (diff) |
Revert the wrong part of r139528, and fix testcases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139541 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/avx-blend.ll')
-rw-r--r-- | test/CodeGen/X86/avx-blend.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/avx-blend.ll b/test/CodeGen/X86/avx-blend.ll index e3008d9e16..71727827b3 100644 --- a/test/CodeGen/X86/avx-blend.ll +++ b/test/CodeGen/X86/avx-blend.ll @@ -85,7 +85,7 @@ define <8 x i64> @vsel_i648(<8 x i64> %v1, <8 x i64> %v2) { ;; TEST blend + compares ; CHECK: A define <2 x double> @A(<2 x double> %x, <2 x double> %y) { - ; CHECK: vcmpltpd + ; CHECK: vcmplepd ; CHECK: vblendvpd %max_is_x = fcmp oge <2 x double> %x, %y %max = select <2 x i1> %max_is_x, <2 x double> %x, <2 x double> %y @@ -94,7 +94,7 @@ define <2 x double> @A(<2 x double> %x, <2 x double> %y) { ; CHECK: B define <2 x double> @B(<2 x double> %x, <2 x double> %y) { - ; CHECK: vcmplepd + ; CHECK: vcmpltpd ; CHECK: vblendvpd %max_is_x = fcmp ogt <2 x double> %x, %y %max = select <2 x i1> %max_is_x, <2 x double> %x, <2 x double> %y |