mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
02b985c50f
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33354 91177308-0d34-0410-b5e6-96231b3b80d8
72 lines
1.7 KiB
LLVM
72 lines
1.7 KiB
LLVM
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+vfp2 &&
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+vfp2 | grep fcvtsd &&
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+vfp2 | grep fcvtds &&
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+vfp2 | grep ftosizs &&
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+vfp2 | grep ftouizs &&
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+vfp2 | grep ftosizd &&
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+vfp2 | grep ftouizd &&
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+vfp2 | grep fsitos &&
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+vfp2 | grep fsitod &&
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+vfp2 | grep fuitos &&
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+vfp2 | grep fuitod
|
|
|
|
float %f1(double %x) {
|
|
entry:
|
|
%tmp1 = cast double %x to float
|
|
ret float %tmp1
|
|
}
|
|
|
|
double %f2(float %x) {
|
|
entry:
|
|
%tmp1 = cast float %x to double
|
|
ret double %tmp1
|
|
}
|
|
|
|
int %f3(float %x) {
|
|
entry:
|
|
%tmp = cast float %x to int
|
|
ret int %tmp
|
|
}
|
|
|
|
uint %f4(float %x) {
|
|
entry:
|
|
%tmp = cast float %x to uint
|
|
ret uint %tmp
|
|
}
|
|
|
|
int %f5(double %x) {
|
|
entry:
|
|
%tmp = cast double %x to int
|
|
ret int %tmp
|
|
}
|
|
|
|
uint %f6(double %x) {
|
|
entry:
|
|
%tmp = cast double %x to uint
|
|
ret uint %tmp
|
|
}
|
|
|
|
float %f7(int %a) {
|
|
entry:
|
|
%tmp = cast int %a to float
|
|
ret float %tmp
|
|
}
|
|
|
|
double %f8(int %a) {
|
|
entry:
|
|
%tmp = cast int %a to double
|
|
ret double %tmp
|
|
}
|
|
|
|
float %f9(uint %a) {
|
|
entry:
|
|
%tmp = cast uint %a to float
|
|
ret float %tmp
|
|
}
|
|
|
|
double %f10(uint %a) {
|
|
entry:
|
|
%tmp = cast uint %a to double
|
|
ret double %tmp
|
|
}
|