blob: e5b5791b3cda8336da153763dca2c3b48276d707 [file] [log] [blame]
Edward O'Callaghan11cc4fa2009-11-22 14:23:33 +00001; RUN: llc < %s -march=arm -mattr=+vfp2 | FileCheck %s -check-prefix=VFP2
2; RUN: llc < %s -march=arm -mattr=+neon -arm-use-neon-fp=1 | FileCheck %s -check-prefix=NFP1
3; RUN: llc < %s -march=arm -mattr=+neon -arm-use-neon-fp=0 | FileCheck %s -check-prefix=NFP0
4; RUN: llc < %s -march=arm -mcpu=cortex-a8 | FileCheck %s -check-prefix=CORTEXA8
5; RUN: llc < %s -march=arm -mcpu=cortex-a9 | FileCheck %s -check-prefix=CORTEXA9
David Goodwin53e44712009-08-04 20:39:05 +00006
7define float @test(float %a, float %b) {
8entry:
9 %dum = fadd float %a, %b
10 %0 = tail call float @fabsf(float %dum)
11 %dum1 = fadd float %0, %b
12 ret float %dum1
13}
14
15declare float @fabsf(float)
Edward O'Callaghan11cc4fa2009-11-22 14:23:33 +000016
17; VFP2: test:
18; VFP2: vabs.f32 s1, s1
19
20; NFP1: test:
21; NFP1: vabs.f32 d1, d1
22; NFP0: test:
23; NFP0: vabs.f32 s1, s1
24
25; CORTEXA8: test:
26; CORTEXA8: vabs.f32 d1, d1
27; CORTEXA9: test:
28; CORTEXA9: vabs.f32 s1, s1