llvm-project/llvm/test/Regression/CodeGen/CBackend/2005-08-23-Fmod.ll

7 lines
126 B
LLVM

; RUN: llvm-as < %s | llc -march=c | grep fmod
double %test(double %A, double %B) {
%C = rem double %A, %B
ret double %C
}