brintos

brintos / llvm-project-archived public Read only

0
0
Text · 732 B · 75e7559 Raw
22 lines · plain
1; RUN: not llc -mtriple=powerpc64le-gnu-linux -filetype=null %s 2>&1 | FileCheck %s2 3; CHECK: error: no libcall available for fsincospi4define { half, half } @test_sincospi_f16(half %a) #0 {5  %result = call { half, half } @llvm.sincospi.f16(half %a)6  ret { half, half } %result7}8 9; CHECK: error: no libcall available for fsincospi10define { float, float } @test_sincospi_f32(float %a) #0 {11  %result = call { float, float } @llvm.sincospi.f32(float %a)12  ret { float, float } %result13}14 15; CHECK: error: no libcall available for fsincospi16define { double, double } @test_sincospi_f64(double %a) #0 {17  %result = call { double, double } @llvm.sincospi.f64(double %a)18  ret { double, double } %result19}20 21attributes #0 = { nounwind }22