diff options
author | Nirav Dave <niravd@google.com> | 2016-12-09 17:18:24 +0000 |
---|---|---|
committer | Nirav Dave <niravd@google.com> | 2016-12-09 17:18:24 +0000 |
commit | bedb5d906c097ba8117a1b3232f527ae1acffe37 (patch) | |
tree | 86d7084049259cdee6dd306836cb8c5b1c08255f /llvm/test/CodeGen/X86/split-store.ll | |
parent | 078aea904331271c3fdc65b52d128a8acefe4e38 (diff) | |
download | bcm5719-llvm-bedb5d906c097ba8117a1b3232f527ae1acffe37.tar.gz bcm5719-llvm-bedb5d906c097ba8117a1b3232f527ae1acffe37.zip |
Revert "In visitSTORE, always use FindBetterChain, rather than only when UseAA is enabled."
This reverts commit r289221 which appears to be triggering an assertion
llvm-svn: 289226
Diffstat (limited to 'llvm/test/CodeGen/X86/split-store.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/split-store.ll | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/llvm/test/CodeGen/X86/split-store.ll b/llvm/test/CodeGen/X86/split-store.ll index 1d3fba69ca7..8a276f8d2f7 100644 --- a/llvm/test/CodeGen/X86/split-store.ll +++ b/llvm/test/CodeGen/X86/split-store.ll @@ -1,8 +1,8 @@ ; RUN: llc -mtriple=x86_64-unknown-unknown < %s | FileCheck %s ; CHECK-LABEL: int32_float_pair -; CHECK-DAG: movl %edi, (%rsi) -; CHECK-DAG: movss %xmm0, 4(%rsi) +; CHECK: movl %edi, (%rsi) +; CHECK: movss %xmm0, 4(%rsi) define void @int32_float_pair(i32 %tmp1, float %tmp2, i64* %ref.tmp) { entry: %t0 = bitcast float %tmp2 to i32 @@ -15,8 +15,8 @@ entry: } ; CHECK-LABEL: float_int32_pair -; CHECK-DAG: movss %xmm0, (%rsi) -; CHECK-DAG: movl %edi, 4(%rsi) +; CHECK: movss %xmm0, (%rsi) +; CHECK: movl %edi, 4(%rsi) define void @float_int32_pair(float %tmp1, i32 %tmp2, i64* %ref.tmp) { entry: %t0 = bitcast float %tmp1 to i32 @@ -29,9 +29,9 @@ entry: } ; CHECK-LABEL: int16_float_pair -; CHECK-DAG: movzwl %di, %eax -; CHECK-DAG: movl %eax, (%rsi) -; CHECK-DAG: movss %xmm0, 4(%rsi) +; CHECK: movzwl %di, %eax +; CHECK: movl %eax, (%rsi) +; CHECK: movss %xmm0, 4(%rsi) define void @int16_float_pair(i16 signext %tmp1, float %tmp2, i64* %ref.tmp) { entry: %t0 = bitcast float %tmp2 to i32 @@ -44,9 +44,9 @@ entry: } ; CHECK-LABEL: int8_float_pair -; CHECK-DAG: movzbl %dil, %eax -; CHECK-DAG: movl %eax, (%rsi) -; CHECK-DAG: movss %xmm0, 4(%rsi) +; CHECK: movzbl %dil, %eax +; CHECK: movl %eax, (%rsi) +; CHECK: movss %xmm0, 4(%rsi) define void @int8_float_pair(i8 signext %tmp1, float %tmp2, i64* %ref.tmp) { entry: %t0 = bitcast float %tmp2 to i32 |