From 6f729d601c8a6a9710356aadb42dc8d0efa95bf2 Mon Sep 17 00:00:00 2001 From: Tanya Lattner Date: Tue, 25 Mar 2008 04:26:08 +0000 Subject: Byebye llvm-upgrade! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48762 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/2006-05-25-CycleInDAG.ll | 35 +++++++++++++++---------------- 1 file changed, 17 insertions(+), 18 deletions(-) (limited to 'test/CodeGen/X86/2006-05-25-CycleInDAG.ll') diff --git a/test/CodeGen/X86/2006-05-25-CycleInDAG.ll b/test/CodeGen/X86/2006-05-25-CycleInDAG.ll index 8258f0b..c9a0049 100644 --- a/test/CodeGen/X86/2006-05-25-CycleInDAG.ll +++ b/test/CodeGen/X86/2006-05-25-CycleInDAG.ll @@ -1,21 +1,20 @@ -; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 +; RUN: llvm-as < %s | llc -march=x86 -int %test() { - br bool false, label %cond_next33, label %cond_true12 - -cond_true12: - ret int 0 - -cond_next33: - %tmp44.i = call double %foo( double 0.000000e+00, int 32 ) - %tmp61.i = load ubyte* null - %tmp61.i = cast ubyte %tmp61.i to int - %tmp58.i = or int 0, %tmp61.i - %tmp62.i = or int %tmp58.i, 0 - %tmp62.i = cast int %tmp62.i to double - %tmp64.i = add double %tmp62.i, %tmp44.i - %tmp68.i = call double %foo( double %tmp64.i, int 0 ) - ret int 0 +define i32 @test() { + br i1 false, label %cond_next33, label %cond_true12 +cond_true12: ; preds = %0 + ret i32 0 +cond_next33: ; preds = %0 + %tmp44.i = call double @foo( double 0.000000e+00, i32 32 ) ; [#uses=1] + %tmp61.i = load i8* null ; [#uses=1] + %tmp61.i.upgrd.1 = zext i8 %tmp61.i to i32 ; [#uses=1] + %tmp58.i = or i32 0, %tmp61.i.upgrd.1 ; [#uses=1] + %tmp62.i = or i32 %tmp58.i, 0 ; [#uses=1] + %tmp62.i.upgrd.2 = sitofp i32 %tmp62.i to double ; [#uses=1] + %tmp64.i = add double %tmp62.i.upgrd.2, %tmp44.i ; [#uses=1] + %tmp68.i = call double @foo( double %tmp64.i, i32 0 ) ; [#uses=0] + ret i32 0 } -declare double %foo(double, int) +declare double @foo(double, i32) + -- cgit v1.1