summaryrefslogtreecommitdiff
path: root/test/CodeGen/NVPTX/inline-asm.ll
blob: d76eb4239ee3cf180bb54461dd26ce679b55cbcb (plain)
1
2
3
4
5
6
7
8
9
; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s


define float @test(float %x) {
entry:
; CHECK: ex2.approx.ftz.f32 %f{{[0-9]+}}, %f{{[0-9]+}}
  %0 = call float asm "ex2.approx.ftz.f32 $0, $1;", "=f,f"(float %x)
  ret float %0
}