2011-04-20 23:37:17 +08:00
|
|
|
; RUN: llc < %s -march=ptx32 -mattr=+sm13 | FileCheck %s
|
2011-03-11 00:57:18 +08:00
|
|
|
|
|
|
|
define ptx_device float @t1_f32(float %x, float %y) {
|
2011-09-23 00:45:51 +08:00
|
|
|
; CHECK: div.rn.f32 %ret{{[0-9]+}}, %f{{[0-9]+}}, %f{{[0-9]+}};
|
|
|
|
; CHECK: ret;
|
2011-03-11 00:57:18 +08:00
|
|
|
%a = fdiv float %x, %y
|
|
|
|
ret float %a
|
|
|
|
}
|
|
|
|
|
|
|
|
define ptx_device double @t1_f64(double %x, double %y) {
|
2011-09-23 00:45:51 +08:00
|
|
|
; CHECK: div.rn.f64 %ret{{[0-9]+}}, %fd{{[0-9]+}}, %fd{{[0-9]+}};
|
|
|
|
; CHECK: ret;
|
2011-03-11 00:57:18 +08:00
|
|
|
%a = fdiv double %x, %y
|
|
|
|
ret double %a
|
|
|
|
}
|