15 lines · plain
1; RUN: not llc -mtriple=mipsel -mcpu=mips32r2 -mattr=+fp64 \2; RUN: -O0 -relocation-model=pic -fast-isel-abort=3 -filetype=null %s 2>&1 | FileCheck %s3 4; Check that FastISel aborts when we have 64bit FPU registers. FastISel currently5; supports AFGR64 only, which uses paired 32 bit registers.6 7; CHECK: LLVM ERROR: FastISel didn't lower all arguments: i1 (double) (in function: f)8 9define zeroext i1 @f(double %value) {10entry:11 %value.addr = alloca double, align 812 store double %value, ptr %value.addr, align 813 ret i1 false14}15