14 lines · plain
1; RUN: not llc -mtriple=aarch64-gnu-linux -filetype=null %s 2>&1 | FileCheck %s2 3; CHECK: error: no libcall available for fsincospi4define { float, float } @test_sincospi_f32(float %a) {5 %result = call { float, float } @llvm.sincospi.f32(float %a)6 ret { float, float } %result7}8 9; CHECK: error: no libcall available for fsincospi10define { double, double } @test_sincospi_f64(double %a) {11 %result = call { double, double } @llvm.sincospi.f64(double %a)12 ret { double, double } %result13}14