summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-06-19 21:15:06 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-06-19 21:15:06 +0000
commit73a76736fbae602563e1c7dab3658c005caa2c09 (patch)
treeb169baa3e3f4a356c05567727ce75ac24f3eaafa /test
parente494b9e0d78be67eec3cd7db4025488e55a127a6 (diff)
downloadllvm-73a76736fbae602563e1c7dab3658c005caa2c09.tar.gz
llvm-73a76736fbae602563e1c7dab3658c005caa2c09.tar.bz2
llvm-73a76736fbae602563e1c7dab3658c005caa2c09.tar.xz
Revert 73718. It's breaking 254.gap.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73783 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/X86/optimize-max-0.ll1
-rw-r--r--test/CodeGen/X86/optimize-max-1.ll1
2 files changed, 2 insertions, 0 deletions
diff --git a/test/CodeGen/X86/optimize-max-0.ll b/test/CodeGen/X86/optimize-max-0.ll
index 90c14565e9..78bb669e33 100644
--- a/test/CodeGen/X86/optimize-max-0.ll
+++ b/test/CodeGen/X86/optimize-max-0.ll
@@ -1,4 +1,5 @@
; RUN: llvm-as < %s | llc -march=x86 | not grep cmov
+; XFAIL: *
; LSR should be able to eliminate the max computations by
; making the loops use slt/ult comparisons instead of ne comparisons.
diff --git a/test/CodeGen/X86/optimize-max-1.ll b/test/CodeGen/X86/optimize-max-1.ll
index 084e1818f5..b9e6688837 100644
--- a/test/CodeGen/X86/optimize-max-1.ll
+++ b/test/CodeGen/X86/optimize-max-1.ll
@@ -1,4 +1,5 @@
; RUN: llvm-as < %s | llc -march=x86-64 | not grep cmov
+; XFAIL: *
; LSR should be able to eliminate both smax and umax expressions
; in loop trip counts.