You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
181 B

; RUN: llc < %s -march=nvptx -mcpu=sm_20 -nvptx-prec-divf32=0 | FileCheck %s
define float @foo(float %a) {
; CHECK: div.approx.f32
%div = fdiv float %a, 13.0
ret float %div
}