llvm-6502/test/CodeGen/PTX/fdiv-sm13.ll
2011-06-16 17:50:00 +00:00

16 lines
361 B
LLVM

; RUN: llc < %s -march=ptx32 -mattr=+sm13 | FileCheck %s
define ptx_device float @t1_f32(float %x, float %y) {
; CHECK: div.approx.f32 r0, r1, r2;
; CHECK-NEXT: ret;
%a = fdiv float %x, %y
ret float %a
}
define ptx_device double @t1_f64(double %x, double %y) {
; CHECK: div.rn.f64 rd0, rd1, rd2;
; CHECK-NEXT: ret;
%a = fdiv double %x, %y
ret double %a
}