aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PTX/fneg.ll
blob: 66ca74a6ff8eade19d23eb2889df3daf356aae0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; RUN: llc < %s -march=ptx32 | FileCheck %s

define ptx_device float @t1_f32(float %x) {
; CHECK: neg.f32 r{{[0-9]+}}, r{{[0-9]+}};
; CHECK-NEXT: ret;
	%y = fsub float -0.000000e+00, %x
	ret float %y
}

define ptx_device double @t1_f64(double %x) {
; CHECK: neg.f64 rd{{[0-9]+}}, rd{{[0-9]+}};
; CHECK-NEXT: ret;
	%y = fsub double -0.000000e+00, %x
	ret double %y
}