diff options
| author | Chandler Carruth <chandlerc@gmail.com> | 2015-05-30 06:02:37 +0000 |
|---|---|---|
| committer | Chandler Carruth <chandlerc@gmail.com> | 2015-05-30 06:02:37 +0000 |
| commit | 3bedf4407ba4d7ffc5eef2b42c1ab5da24600297 (patch) | |
| tree | c1aaeea0d29a9be92300ff23c1e48b11d827a8a8 | |
| parent | 4eecd30d1910ba784e98a7d628f0e2448712725f (diff) | |
| download | bcm5719-llvm-3bedf4407ba4d7ffc5eef2b42c1ab5da24600297.tar.gz bcm5719-llvm-3bedf4407ba4d7ffc5eef2b42c1ab5da24600297.zip | |
[x86] Update the order of instructions after I switched to a bitcast
helper that skips creating a cast when it isn't necessary.
It's really somewhat concerning that this was caused by the the presence
of a no-op bitcast, but...
llvm-svn: 238642
| -rw-r--r-- | llvm/test/CodeGen/X86/avx-vperm2x128.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/avx-vperm2x128.ll b/llvm/test/CodeGen/X86/avx-vperm2x128.ll index 10ed079a264..74d20f348b5 100644 --- a/llvm/test/CodeGen/X86/avx-vperm2x128.ll +++ b/llvm/test/CodeGen/X86/avx-vperm2x128.ll @@ -147,8 +147,8 @@ define <16 x i16> @E5i(<16 x i16>* %a, <16 x i16>* %b) nounwind uwtable readnone ; AVX1-LABEL: E5i: ; AVX1: ## BB#0: ## %entry ; AVX1-NEXT: vmovdqa (%rdi), %ymm0 -; AVX1-NEXT: vpaddw {{.*}}(%rip), %xmm0, %xmm0 ; AVX1-NEXT: vmovaps (%rsi), %ymm1 +; AVX1-NEXT: vpaddw {{.*}}(%rip), %xmm0, %xmm0 ; AVX1-NEXT: vinsertf128 $1, %xmm0, %ymm1, %ymm0 ; AVX1-NEXT: retq ; |

