diff options
| author | Michael Zolotukhin <mzolotukhin@apple.com> | 2014-03-18 18:17:59 +0000 |
|---|---|---|
| committer | Michael Zolotukhin <mzolotukhin@apple.com> | 2014-03-18 18:17:59 +0000 |
| commit | 7ac41056c8b310ad4a969f598d74cf3a3e85c7c6 (patch) | |
| tree | 0239246d15099e616fa6c4cae36bc99767aa0dc2 | |
| parent | 483fdd4b7fce4b1cc61729f1c8c28b1f2f4bb484 (diff) | |
| download | bcm5719-llvm-7ac41056c8b310ad4a969f598d74cf3a3e85c7c6.tar.gz bcm5719-llvm-7ac41056c8b310ad4a969f598d74cf3a3e85c7c6.zip | |
Fix test lsr-normalization.ll broken in r204161.
llvm-svn: 204166
| -rw-r--r-- | llvm/test/CodeGen/X86/lsr-normalization.ll | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/test/CodeGen/X86/lsr-normalization.ll b/llvm/test/CodeGen/X86/lsr-normalization.ll index 2c667349953..2775558b0cf 100644 --- a/llvm/test/CodeGen/X86/lsr-normalization.ll +++ b/llvm/test/CodeGen/X86/lsr-normalization.ll @@ -1,5 +1,6 @@ ; REQUIRES: asserts -; RUN: llc -debug < %s -march=x86-64 2>&1 | FileCheck %s +; RUN: llc < %s -march=x86-64 | FileCheck %s --check-prefix=ASM +; RUN: llc -debug -o /dev/null < %s -march=x86-64 2>&1 | FileCheck %s --check-prefix=DBG ; rdar://8168938 ; This testcase involves SCEV normalization with the exit value from @@ -7,10 +8,9 @@ ; loop. The expression should be properly normalized and simplified, ; and require only a single division. -; CHECK-NOT: DISCARDING (NORMALIZATION ISN'T INVERTIBLE) -; CHECK: _main: -; CHECK: div -; CHECK-NOT: div +; DBG-NOT: DISCARDING (NORMALIZATION ISN'T INVERTIBLE) +; ASM: div +; ASM-NOT: div %0 = type { %0*, %0* } |

