Add test for FCOPYSIGN.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32871 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Lauro Ramos Venancio 2007-01-04 14:24:32 +00:00
parent ca1f66db0d
commit 4c6676c918

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)