brintos

brintos / llvm-project-archived public Read only

0
0
Text · 471 B · 9181c23 Raw
13 lines · plain
1; RUN: not llc -mtriple=mipsel -mcpu=mips32r2 -mattr=+soft-float \2; RUN:         -O0 -fast-isel-abort=3 -relocation-model=pic < %s 2>&1 | FileCheck %s3 4; Test that FastISel aborts instead of trying to lower arguments for soft-float.5 6; CHECK: LLVM ERROR: FastISel didn't lower all arguments: void (double) (in function: __signbit)7define void @__signbit(double %__x) {8entry:9  %__x.addr = alloca double, align 810  store double %__x, ptr %__x.addr, align 811  ret void12}13