linux-packaging-mono/external/llvm/test/MC/X86/x86-windows-itanium-libcalls.ll
Xamarin Public Jenkins (auto-signing) f32dbaf0b2 Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
2018-12-21 19:01:49 +00:00

17 lines
382 B
LLVM

; RUN: opt -mtriple i686-windows-itanium -O2 -o - %s | llvm-dis | FileCheck %s
target triple = "i686-windows-itanium"
declare dllimport double @floor(double)
define dllexport float @test(float %f) {
%conv = fpext float %f to double
%call = tail call double @floor(double %conv)
%cast = fptrunc double %call to float
ret float %cast
}
; CHECK-NOT: floorf
; CHECK: floor