1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 21:42:54 +02:00
llvm-mirror/test/CodeGen/CBackend/2005-08-23-Fmod.ll

8 lines
168 B
LLVM
Raw Normal View History

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