Fix part 1 of pr4682. PICADD is a 16-bit instruction even in thumb2 mode.
[llvm/avr.git] / test / CodeGen / ARM / fnmuls.ll
blobf2b5ea92f8082f68f84ef0969f29c355b2ec6f38
1 ; XFAIL: *
2 ; RUN: llvm-as < %s | llc -march=arm -mattr=+vfp2 | grep -E {fnmuls\\W*s\[0-9\]+,\\W*s\[0-9\]+,\\W*s\[0-9\]+} | count 2
3 ; RUN: llvm-as < %s | llc -march=arm -mattr=+neon,+neonfp | grep -E {fnmuls\\W*s\[0-9\]+,\\W*s\[0-9\]+,\\W*s\[0-9\]+} | count 2
4 ; RUN: llvm-as < %s | llc -march=arm -mattr=+neon,-neonfp | grep -E {fnmuls\\W*s\[0-9\]+,\\W*s\[0-9\]+,\\W*s\[0-9\]+} | count 2
6 define float @test1(float %a, float %b) {
7 entry:
8         %0 = fmul float %a, %b
9         %1 = fsub float 0.0, %0
10         ret float %1
13 define float @test2(float %a, float %b) {
14 entry:
15         %0 = fmul float %a, %b
16         %1 = fmul float -1.0, %0
17         ret float %1