9 lines · plain
1; RUN: not llc -mtriple=arm-linux-gnu -float-abi=soft -filetype=null %s 2>&1 | FileCheck %s2 3; FIXME: This should not fail but isn't implemented4; CHECK: error: powi exponent does not match sizeof(int)5define float @soften_powi_error(float %x, i64 %n) {6 %powi = call float @llvm.powi.f32.i64(float %x, i64 %n)7 ret float %powi8}9