summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/R600/fpext.ll
blob: 320545edf56b47090ad8e7fec2c1b5530c185061 (plain)
1
2
3
4
5
6
7
8
9
; RUN: llc < %s -march=amdgcn -mcpu=SI -verify-machineinstrs | FileCheck %s --check-prefix=CHECK

; CHECK: {{^}}fpext:
; CHECK: v_cvt_f64_f32_e32
define void @fpext(double addrspace(1)* %out, float %in) {
  %result = fpext float %in to double
  store double %result, double addrspace(1)* %out
  ret void
}
OpenPOWER on IntegriCloud