blob: 7a02dbd9d0d11af2c3cf962a68b255871c7b5f13 (
plain)
1
2
3
4
5
6
7
8
|
; RUN: not llc -mtriple arm-linux-gnu -float-abi=soft -filetype=null %s 2>&1 | FileCheck %s
; FIXME: This should not fail but isn't implemented
; CHECK: error: ffrexp exponent does not match sizeof(int)
define { float, i64 } @soften_frexp_error(float %x) {
%frexp = call { float, i64 } @llvm.frexp.f32.i64(float %x)
ret { float, i64 } %frexp
}
|