brintos

brintos / llvm-project-archived public Read only

0
0
Text · 745 B · 492fc36 Raw
30 lines · plain
1; RUN: llc -mtriple=arm-unknown-unknown < %s | FileCheck %s2 3; CHECK: test14define float @test1() nounwind uwtable readnone ssp {5; CHECK-NOT: floorf6  %foo = call float @floorf(float 0x4000CCCCC0000000) nounwind readnone7  ret float %foo8}9 10; CHECK: test211define float @test2() nounwind uwtable readnone ssp {12; CHECK-NOT: ceilf13  %foo = call float @ceilf(float 0x4000CCCCC0000000) nounwind readnone14  ret float %foo15}16 17; CHECK: test318define float @test3() nounwind uwtable readnone ssp {19; CHECK-NOT: truncf20  %foo = call float @truncf(float 0x4000CCCCC0000000) nounwind readnone21  ret float %foo22}23 24declare float @floorf(float) nounwind readnone25declare float @ceilf(float) nounwind readnone26declare float @truncf(float) nounwind readnone27 28 29 30