mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-11 08:07:22 +00:00
7bc8414ee9
Only Linux is supported at the moment, and other platforms quickly fault. As a result these tests would fail on non-Linux hosts. It may be worth making the tests more generic again as more platforms are supported. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174170 91177308-0d34-0410-b5e6-96231b3b80d8
35 lines
810 B
LLVM
35 lines
810 B
LLVM
; RUN: llc -verify-machineinstrs < %s -mtriple=aarch64-none-linux-gnu | FileCheck %s
|
|
|
|
@varf32 = global float 0.0
|
|
@varf64 = global double 0.0
|
|
|
|
define void @check_float() {
|
|
; CHECK: check_float:
|
|
|
|
%val = load float* @varf32
|
|
%newval1 = fadd float %val, 8.5
|
|
store volatile float %newval1, float* @varf32
|
|
; CHECK: fmov {{s[0-9]+}}, #8.5
|
|
|
|
%newval2 = fadd float %val, 128.0
|
|
store volatile float %newval2, float* @varf32
|
|
; CHECK: ldr {{s[0-9]+}}, .LCPI0_0
|
|
|
|
ret void
|
|
}
|
|
|
|
define void @check_double() {
|
|
; CHECK: check_double:
|
|
|
|
%val = load double* @varf64
|
|
%newval1 = fadd double %val, 8.5
|
|
store volatile double %newval1, double* @varf64
|
|
; CHECK: fmov {{d[0-9]+}}, #8.5
|
|
|
|
%newval2 = fadd double %val, 128.0
|
|
store volatile double %newval2, double* @varf64
|
|
; CHECK: ldr {{d[0-9]+}}, .LCPI1_0
|
|
|
|
ret void
|
|
}
|