1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/CodeGen/ARM/fpmem.ll

23 lines
655 B
LLVM
Raw Normal View History

; 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
2008-02-17 21:02:20 +01:00
define float @f1(float %a) {
ret float 0.000000e+00
}
2008-02-17 21:02:20 +01:00
define float @f2(float* %v, float %u) {
%tmp = load float* %v ; <float> [#uses=1]
%tmp1 = fadd float %tmp, %u ; <float> [#uses=1]
2008-02-17 21:02:20 +01:00
ret float %tmp1
}
2008-02-17 21:02:20 +01:00
define void @f3(float %a, float %b, float* %v) {
%tmp = fadd float %a, %b ; <float> [#uses=1]
2008-02-17 21:02:20 +01:00
store float %tmp, float* %v
ret void
}