zpu: managed to compile program that writes constant to global variable
[llvm/zpu.git] / test / CodeGen / ARM / fcopysign.ll
bloba6d741087a8955ee9537f1f149b68e6f86c034b3
1 ; RUN: llc < %s -march=arm | grep bic | count 2
2 ; RUN: llc < %s -march=arm -mattr=+v6,+vfp2 | \
3 ; RUN:   grep vneg | count 2
5 define float @test1(float %x, double %y) {
6         %tmp = fpext float %x to double
7         %tmp2 = tail call double @copysign( double %tmp, double %y )
8         %tmp3 = fptrunc double %tmp2 to float
9         ret float %tmp3
12 define double @test2(double %x, float %y) {
13         %tmp = fpext float %y to double
14         %tmp2 = tail call double @copysign( double %x, double %tmp )
15         ret double %tmp2
18 declare double @copysign(double, double)