1 ; RUN: llc < %s -march=arm -mattr=+vfp2 | FileCheck %s -check-prefix=VFP2 2 ; RUN: llc < %s -march=arm -mattr=+neon | FileCheck %s -check-prefix=NFP0 3 ; RUN: llc < %s -march=arm -mcpu=cortex-a8 | FileCheck %s -check-prefix=CORTEXA8 4 ; RUN: llc < %s -march=arm -mcpu=cortex-a9 | FileCheck %s -check-prefix=CORTEXA9 5 6 define float @test(float %a, float %b) { 7 entry: 8 %0 = fdiv float %a, %b 9 ret float %0 10 } 11 12 ; VFP2-LABEL: test: 13 ; VFP2: vdiv.f32 s{{.}}, s{{.}}, s{{.}} 14 15 ; NFP1-LABEL: test: 16 ; NFP1: vdiv.f32 s{{.}}, s{{.}}, s{{.}} 17 ; NFP0-LABEL: test: 18 ; NFP0: vdiv.f32 s{{.}}, s{{.}}, s{{.}} 19 20 ; CORTEXA8-LABEL: test: 21 ; CORTEXA8: vdiv.f32 s{{.}}, s{{.}}, s{{.}} 22 ; CORTEXA9-LABEL: test: 23 ; CORTEXA9: vdiv.f32 s{{.}}, s{{.}}, s{{.}} 24