blob: 05452d1e86e2353bf60a53314a5e48e6556ca1da [file] [log] [blame]
Tom Stellard70f13db2013-10-10 17:11:46 +00001; RUN: llc < %s -march=r600 -mcpu=SI -verify-machineinstrs | FileCheck %s --check-prefix=CHECK
Niels Ole Salscheider719fbc92013-08-08 16:06:15 +00002
Tom Stellard79243d92014-10-01 17:15:17 +00003; CHECK: {{^}}fptrunc:
Niels Ole Salscheider719fbc92013-08-08 16:06:15 +00004; CHECK: V_CVT_F32_F64_e32
5define void @fptrunc(float addrspace(1)* %out, double %in) {
6 %result = fptrunc double %in to float
7 store float %result, float addrspace(1)* %out
8 ret void
9}