brintos

brintos / llvm-project-archived public Read only

0
0
Text · 349 B · 7a02dbd Raw
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: ffrexp exponent does not match sizeof(int)5define { float, i64 } @soften_frexp_error(float %x) {6  %frexp = call { float, i64 } @llvm.frexp.f32.i64(float %x)7  ret { float, i64 } %frexp8}9