mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-24 08:18:33 +00:00
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215209 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
697 B
LLVM
20 lines
697 B
LLVM
; RUN: lli -O0 -force-interpreter < %s
|
||
|
||
; libffi does not support fp128 so we don’t test it
|
||
declare float @llvm.sin.f32(float)
|
||
declare double @llvm.sin.f64(double)
|
||
declare float @llvm.cos.f32(float)
|
||
declare double @llvm.cos.f64(double)
|
||
declare float @llvm.ceil.f32(float)
|
||
declare double @llvm.ceil.f64(double)
|
||
|
||
define i32 @main() {
|
||
%sin32 = call float @llvm.sin.f32(float 0.000000e+00)
|
||
%sin64 = call double @llvm.sin.f64(double 0.000000e+00)
|
||
%cos32 = call float @llvm.cos.f32(float 0.000000e+00)
|
||
%cos64 = call double @llvm.cos.f64(double 0.000000e+00)
|
||
%ceil32 = call float @llvm.ceil.f32(float 0.000000e+00)
|
||
%ceil64 = call double @llvm.ceil.f64(double 0.000000e+00)
|
||
ret i32 0
|
||
}
|