mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
142428ce64
llvm-svn: 81293
9 lines
233 B
LLVM
9 lines
233 B
LLVM
; RUN: llc < %s -mtriple=arm-linux-gnueabi -mattr=+vfp2 -float-abi=hard | grep {fcpys s0, s1}
|
|
|
|
define float @f(float %z, double %a, float %b) {
|
|
%tmp = call float @g(float %b)
|
|
ret float %tmp
|
|
}
|
|
|
|
declare float @g(float)
|