summaryrefslogtreecommitdiff
path: root/test/CodeGen/PTX/mad-disabling.ll
blob: ad7b3417ec48685b348aec1de541c784c619f99a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
; RUN: llc < %s -march=ptx32 -mattr=+ptx20,+sm20 | grep "mad"
; RUN: llc < %s -march=ptx32 -mattr=+ptx20,+sm20,+no-fma | grep -v "mad"

define ptx_device float @test_mul_add_f(float %x, float %y, float %z) {
entry:
  %a = fmul float %x, %y
  %b = fadd float %a, %z
  ret float %b
}

define ptx_device double @test_mul_add_d(double %x, double %y, double %z) {
entry:
  %a = fmul double %x, %y
  %b = fadd double %a, %z
  ret double %b
}