Add test for FCOPYSIGN.

llvm-svn: 32871
This commit is contained in:
Lauro Ramos Venancio 2007-01-04 14:24:32 +00:00
parent 7284073ec2
commit 8c45da0664
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm
define csretcc void %__divsc3({ float, float }* %agg.result, float %a, float %b, float %c, float %d) {
entry:
br bool false, label %bb, label %cond_next375
bb: ; preds = %entry
%tmp81 = tail call float %copysignf( float 0x7FF0000000000000, float %c ) ; <float> [#uses=1]
%tmp87 = mul float %tmp81, %b ; <float> [#uses=1]
br label %cond_next375
cond_next375: ; preds = %bb, %entry
%y.1 = phi float [ %tmp87, %bb ], [ 0.000000e+00, %entry ] ; <float> [#uses=0]
ret void
}
declare float %fabsf(float)
declare bool %llvm.isunordered.f32(float, float)
declare float %copysignf(float, float)