diff options
author | Craig Topper <craig.topper@gmail.com> | 2011-11-29 05:37:58 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2011-11-29 05:37:58 +0000 |
commit | fe2a6c584a62508e7e7ab990a16bf84af51ce52e (patch) | |
tree | e4122f8146dd1199c50cd763bb4ab30f63674f21 /test/CodeGen/X86/avx-splat.ll | |
parent | 108126cfc6eddf1e0c9c7db39e25323403f04bbc (diff) | |
download | external_llvm-fe2a6c584a62508e7e7ab990a16bf84af51ce52e.zip external_llvm-fe2a6c584a62508e7e7ab990a16bf84af51ce52e.tar.gz external_llvm-fe2a6c584a62508e7e7ab990a16bf84af51ce52e.tar.bz2 |
Fix VINSERTF128/VEXTRACTF128 to be marked as FP instructions. Allow execution dependency fix pass to convert them to their integer equivalents when AVX2 is enabled.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145376 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/avx-splat.ll')
-rw-r--r-- | test/CodeGen/X86/avx-splat.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/avx-splat.ll b/test/CodeGen/X86/avx-splat.ll index af20b90..f8522c2 100644 --- a/test/CodeGen/X86/avx-splat.ll +++ b/test/CodeGen/X86/avx-splat.ll @@ -47,7 +47,7 @@ entry: ; shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0> ; To: ; shuffle (vload ptr)), undef, <1, 1, 1, 1> -; CHECK: vmovdqa +; CHECK: vmovaps ; CHECK-NEXT: vinsertf128 $1 ; CHECK-NEXT: vpermilps $-1 define <8 x float> @funcE() nounwind { |