1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/CodeGen/ARM/2008-07-17-Fdiv.ll
Duncan Sands ef45c602b6 Softfloat support for FDIV. Patch by
Richard Pennington.

llvm-svn: 53773
2008-07-18 21:18:48 +00:00

7 lines
130 B
LLVM

; RUN: llvm-as < %s | llc -march=arm
define float @f(float %a, float %b) nounwind {
%tmp = fdiv float %a, %b
ret float %tmp
}