mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-10 01:10:48 +00:00
c93ed1707a
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199746 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
181 B
LLVM
9 lines
181 B
LLVM
; 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
|
|
}
|
|
|