2011-04-20 17:37:17 +02:00
|
|
|
; RUN: llc < %s -march=ptx32 -mattr=+sm13 | FileCheck %s
|
2011-03-10 17:57:18 +01:00
|
|
|
|
|
|
|
define ptx_device float @t1_f32(float %x, float %y, float %z) {
|
2011-09-22 18:45:51 +02:00
|
|
|
; CHECK: mad.rn.f32 %ret{{[0-9]+}}, %f{{[0-9]+}}, %f{{[0-9]+}}, %f{{[0-9]+}};
|
|
|
|
; CHECK: ret;
|
2011-03-10 17:57:18 +01:00
|
|
|
%a = fmul float %x, %y
|
|
|
|
%b = fadd float %a, %z
|
|
|
|
ret float %b
|
|
|
|
}
|
|
|
|
|
|
|
|
define ptx_device double @t1_f64(double %x, double %y, double %z) {
|
2011-09-22 18:45:51 +02:00
|
|
|
; CHECK: mad.rn.f64 %ret{{[0-9]+}}, %fd{{[0-9]+}}, %fd{{[0-9]+}}, %fd{{[0-9]+}};
|
|
|
|
; CHECK: ret;
|
2011-03-10 17:57:18 +01:00
|
|
|
%a = fmul double %x, %y
|
|
|
|
%b = fadd double %a, %z
|
|
|
|
ret double %b
|
|
|
|
}
|