llvm-6502/test/CodeGen/CBackend/2005-08-23-Fmod.ll
2009-09-09 00:09:15 +00:00

8 lines
168 B
LLVM

; RUN: llc < %s -march=c | grep fmod
define double @test(double %A, double %B) {
%C = frem double %A, %B ; <double> [#uses=1]
ret double %C
}