xref: /llvm-project/llvm/test/CodeGen/Mips/Fast-ISel/fast-isel-softfloat-lower-args.ll (revision ae26f50aea4ef1a6c7058019f0db11a91bbcdade)
1; RUN: not --crash llc -mtriple=mipsel -mcpu=mips32r2 -mattr=+soft-float \
2; RUN:         -O0 -fast-isel-abort=3 -relocation-model=pic < %s
3
4; Test that FastISel aborts instead of trying to lower arguments for soft-float.
5
6define void @__signbit(double %__x) {
7entry:
8  %__x.addr = alloca double, align 8
9  store double %__x, ptr %__x.addr, align 8
10  ret void
11}
12