18 lines
580 B
LLVM
18 lines
580 B
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc -mtriple=riscv32 -mattr=+d -verify-machineinstrs < %s \
|
|
; RUN: | FileCheck -check-prefix=RV32IFD %s
|
|
; RUN: llc -mtriple=riscv64 -mattr=+d -verify-machineinstrs < %s \
|
|
; RUN: | FileCheck -check-prefix=RV64IFD %s
|
|
|
|
define double @frem_f64(double %a, double %b) nounwind {
|
|
; RV32IFD-LABEL: frem_f64:
|
|
; RV32IFD: # %bb.0:
|
|
; RV32IFD-NEXT: tail fmod@plt
|
|
;
|
|
; RV64IFD-LABEL: frem_f64:
|
|
; RV64IFD: # %bb.0:
|
|
; RV64IFD-NEXT: tail fmod@plt
|
|
%1 = frem double %a, %b
|
|
ret double %1
|
|
}
|