blob: fa897bf83f3a4ce60bd1163b120c6461921576d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
; RUN: llc < %s -march=arm | \
; RUN: grep {mov r0, #0} | count 1
; RUN: llc < %s -march=arm -mattr=+vfp2 | \
; RUN: grep {flds.*\\\[} | count 1
; RUN: llc < %s -march=arm -mattr=+vfp2 | \
; RUN: grep {fsts.*\\\[} | count 1
define float @f1(float %a) {
ret float 0.000000e+00
}
define float @f2(float* %v, float %u) {
%tmp = load float* %v ; <float> [#uses=1]
%tmp1 = fadd float %tmp, %u ; <float> [#uses=1]
ret float %tmp1
}
define void @f3(float %a, float %b, float* %v) {
%tmp = fadd float %a, %b ; <float> [#uses=1]
store float %tmp, float* %v
ret void
}
|