1 ; RUN: llc < %s -march=nvptx -mcpu=sm_20 -nvptx-fma-level=1 | FileCheck %s -check-prefix=FMA
2 ; RUN: llc < %s -march=nvptx -mcpu=sm_20 -nvptx-fma-level=0 | FileCheck %s -check-prefix=MUL
3 ; RUN: llc < %s -march=nvptx64 -mcpu=sm_20 -nvptx-fma-level=1 | FileCheck %s -check-prefix=FMA
4 ; RUN: llc < %s -march=nvptx64 -mcpu=sm_20 -nvptx-fma-level=0 | FileCheck %s -check-prefix=MUL
6 define ptx_device float @test_mul_add_f(float %x, float %y, float %z) {
11 %a = fmul float %x, %y
12 %b = fadd float %a, %z
16 define ptx_device double @test_mul_add_d(double %x, double %y, double %z) {
21 %a = fmul double %x, %y
22 %b = fadd double %a, %z