mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
142428ce64
llvm-svn: 81293
23 lines
655 B
LLVM
23 lines
655 B
LLVM
; 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
|
|
}
|