2009-11-22 15:23:33 +01:00
|
|
|
; RUN: llc < %s -march=arm -mattr=+vfp2 | FileCheck %s -check-prefix=VFP2
|
2010-03-26 00:47:34 +01:00
|
|
|
; RUN: llc < %s -march=arm -mattr=+neon | FileCheck %s -check-prefix=NFP0
|
2013-03-21 22:30:49 +01:00
|
|
|
; RUN: llc < %s -mtriple=arm-eabi -mcpu=cortex-a8 | FileCheck %s -check-prefix=CORTEXA8
|
|
|
|
; RUN: llc < %s -mtriple=arm-eabi -mcpu=cortex-a8 --enable-unsafe-fp-math | FileCheck %s -check-prefix=CORTEXA8U
|
|
|
|
; RUN: llc < %s -mtriple=arm-darwin -mcpu=cortex-a8 | FileCheck %s -check-prefix=CORTEXA8U
|
2009-11-22 15:23:33 +01:00
|
|
|
; RUN: llc < %s -march=arm -mcpu=cortex-a9 | FileCheck %s -check-prefix=CORTEXA9
|
2009-08-04 19:53:06 +02:00
|
|
|
|
|
|
|
define float @test(float %a, float %b) {
|
|
|
|
entry:
|
|
|
|
%0 = fadd float %a, %b
|
|
|
|
ret float %0
|
|
|
|
}
|
|
|
|
|
2013-07-13 22:38:47 +02:00
|
|
|
; VFP2-LABEL: test:
|
2012-09-29 23:43:49 +02:00
|
|
|
; VFP2: vadd.f32 s
|
2009-11-22 15:23:33 +01:00
|
|
|
|
2013-07-13 22:38:47 +02:00
|
|
|
; NFP1-LABEL: test:
|
2012-09-29 23:43:49 +02:00
|
|
|
; NFP1: vadd.f32 d
|
2013-07-13 22:38:47 +02:00
|
|
|
; NFP0-LABEL: test:
|
2012-09-29 23:43:49 +02:00
|
|
|
; NFP0: vadd.f32 s
|
2009-11-22 15:23:33 +01:00
|
|
|
|
2013-07-13 22:38:47 +02:00
|
|
|
; CORTEXA8-LABEL: test:
|
2013-03-21 19:47:47 +01:00
|
|
|
; CORTEXA8: vadd.f32 s
|
2013-07-13 22:38:47 +02:00
|
|
|
; CORTEXA8U-LABEL: test:
|
2013-03-21 19:47:47 +01:00
|
|
|
; CORTEXA8U: vadd.f32 d
|
2013-07-13 22:38:47 +02:00
|
|
|
; CORTEXA9-LABEL: test:
|
2013-03-21 19:47:47 +01:00
|
|
|
; CORTEXA9: vadd.f32 s
|