summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86
diff options
context:
space:
mode:
authorJuergen Ributzka <juergen@apple.com>2014-06-17 14:47:45 +0000
committerJuergen Ributzka <juergen@apple.com>2014-06-17 14:47:45 +0000
commit1d5ff6bb7a4e4ed38351188ba4b2b7d6e0ae3c71 (patch)
tree103d342df7a1efea9797e382defaa2e000ecb4cc /test/CodeGen/X86
parent199da600f3afd6804af2077203a2d4086d7242a9 (diff)
downloadllvm-1d5ff6bb7a4e4ed38351188ba4b2b7d6e0ae3c71.tar.gz
llvm-1d5ff6bb7a4e4ed38351188ba4b2b7d6e0ae3c71.tar.bz2
llvm-1d5ff6bb7a4e4ed38351188ba4b2b7d6e0ae3c71.tar.xz
[FastISel][X86] Fix previous refactoring commit (r211077)
Overlooked that fcmp_une uses an "or" instead of an "and" for combining the flags. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211104 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86')
-rw-r--r--test/CodeGen/X86/fast-isel-cmp.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/fast-isel-cmp.ll b/test/CodeGen/X86/fast-isel-cmp.ll
index edf1263a3e..61cc67a244 100644
--- a/test/CodeGen/X86/fast-isel-cmp.ll
+++ b/test/CodeGen/X86/fast-isel-cmp.ll
@@ -155,7 +155,7 @@ define zeroext i1 @fcmp_une(float %x, float %y) {
; FAST: ucomiss %xmm1, %xmm0
; FAST-NEXT: setne %al
; FAST-NEXT: setp %cl
-; FAST-NEXT: andb %al, %cl
+; FAST-NEXT: orb %al, %cl
%1 = fcmp une float %x, %y
ret i1 %1
}