diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-11-15 07:13:03 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-11-15 07:13:03 +0000 |
commit | f805a7c25c5b28b963d001553db2afd45f9f6a36 (patch) | |
tree | 6127aad3224f8919d3428fb0ee723b21ebed228c /test/CodeGen | |
parent | 44ec9fddc22abeabaf2565691ed02b1f47f532af (diff) | |
download | external_llvm-f805a7c25c5b28b963d001553db2afd45f9f6a36.zip external_llvm-f805a7c25c5b28b963d001553db2afd45f9f6a36.tar.gz external_llvm-f805a7c25c5b28b963d001553db2afd45f9f6a36.tar.bz2 |
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')
-rw-r--r-- | test/CodeGen/X86/isint.ll | 4 | ||||
-rw-r--r-- | test/CodeGen/X86/uint64-to-float.ll | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/X86/isint.ll b/test/CodeGen/X86/isint.ll index 43d0e67..4a98e63 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 diff --git a/test/CodeGen/X86/uint64-to-float.ll b/test/CodeGen/X86/uint64-to-float.ll index 3cf5d4d..1dbbdcf 100644 --- a/test/CodeGen/X86/uint64-to-float.ll +++ b/test/CodeGen/X86/uint64-to-float.ll @@ -38,7 +38,7 @@ target triple = "x86_64-apple-darwin10.0.0" ; CHECK-NEXT: jns LBB0_2 ; CHECK: cvtsi2ss ; CHECK: LBB0_2 -; CHECK: cvtsi2ss +; CHECK-NEXT: cvtsi2ss define float @test(i64 %a) { entry: %b = uitofp i64 %a to float |