mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
56077f5796
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218776 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
304 B
LLVM
10 lines
304 B
LLVM
; RUN: llc < %s -march=r600 -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
|
|
}
|