aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/isint.ll
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2011-11-15 07:13:03 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2011-11-15 07:13:03 +0000
commitf805a7c25c5b28b963d001553db2afd45f9f6a36 (patch)
tree6127aad3224f8919d3428fb0ee723b21ebed228c /test/CodeGen/X86/isint.ll
parent44ec9fddc22abeabaf2565691ed02b1f47f532af (diff)
Revert r144611 and r144613.
These tests are actually correct, clang was miscompiling ExeDepsFix::processUses. Evan fixed the miscompilation in r144628. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144630 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/isint.ll')
-rw-r--r--test/CodeGen/X86/isint.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/isint.ll b/test/CodeGen/X86/isint.ll
index 43d0e67126..4a98e63f38 100644
--- a/test/CodeGen/X86/isint.ll
+++ b/test/CodeGen/X86/isint.ll
@@ -4,7 +4,7 @@ define i32 @isint_return(double %d) nounwind {
; CHECK-NOT: xor
; CHECK: cvt
%i = fptosi double %d to i32
-; CHECK: cvt
+; CHECK-NEXT: cvt
%e = sitofp i32 %i to double
; CHECK: cmpeqsd
%c = fcmp oeq double %d, %e
@@ -19,7 +19,7 @@ declare void @foo()
define void @isint_branch(double %d) nounwind {
; CHECK: cvt
%i = fptosi double %d to i32
-; CHECK: cvt
+; CHECK-NEXT: cvt
%e = sitofp i32 %i to double
; CHECK: ucomisd
%c = fcmp oeq double %d, %e