Home | History | Annotate | Download | only in CBackend
      1 ; RUN: llc < %s -march=c | grep fmod
      2 
      3 define double @test(double %A, double %B) {
      4         %C = frem double %A, %B         ; <double> [#uses=1]
      5         ret double %C
      6 }
      7 
      8