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