22 lines · plain
1; RUN: llc -mtriple=arm-eabi -mattr=+vfp2 %s -o - | FileCheck %s2; RUN: llc -mtriple=arm-eabi -mattr=+neon %s -o - | FileCheck %s3; RUN: llc -mtriple=arm-eabi -mcpu=cortex-a8 %s -o - | FileCheck %s4; RUN: llc -mtriple=arm-eabi -mcpu=cortex-a9 %s -o - | FileCheck %s5 6define arm_aapcs_vfpcc float @test1(float %a, float %b) nounwind {7; CHECK: vnmul.f32 s0, s0, s1 8entry:9 %0 = fmul float %a, %b10 %1 = fsub float -0.0, %011 ret float %112}13 14define arm_aapcs_vfpcc float @test2(float %a, float %b) nounwind {15; CHECK: vnmul.f32 s0, s0, s1 16entry:17 %0 = fmul float %a, %b18 %1 = fmul float -1.0, %019 ret float %120}21 22