[AMDGPU] Add llvm.amdgcn.global.load.lds intrinsic
[llvm-project.git] / llvm / test / CodeGen / ARM / fnmuls.ll
blobde3b053bfc51227cd3725196c812d06c14e21378
1 ; RUN: llc -mtriple=arm-eabi -mattr=+vfp2 %s -o - | FileCheck %s
2 ; RUN: llc -mtriple=arm-eabi -mattr=+neon %s -o - | FileCheck %s
3 ; RUN: llc -mtriple=arm-eabi -mcpu=cortex-a8 %s -o - | FileCheck %s
4 ; RUN: llc -mtriple=arm-eabi -mcpu=cortex-a9 %s -o - | FileCheck %s
6 define arm_aapcs_vfpcc float @test1(float %a, float %b) nounwind {
7 ; CHECK: vnmul.f32 s0, s0, s1 
8 entry:
9         %0 = fmul float %a, %b
10         %1 = fsub float -0.0, %0
11         ret float %1
14 define arm_aapcs_vfpcc float @test2(float %a, float %b) nounwind {
15 ; CHECK: vnmul.f32 s0, s0, s1 
16 entry:
17         %0 = fmul float %a, %b
18         %1 = fmul float -1.0, %0
19         ret float %1