13 lines · plain
1; RUN: llc -filetype=obj -mtriple mipsel-unknown-linux -mcpu=mips32 %s -o tmp.o2; RUN: llvm-readobj -A tmp.o | FileCheck %s -check-prefix=OBJ3; RUN: llc -filetype=asm -mtriple mipsel-unknown-linux -mcpu=mips32 %s -o - | \4; RUN: FileCheck %s -check-prefix=ASM5 6; OBJ: FP ABI: Soft float7; ASM: .module softfloat 8 9define dso_local void @asm_is_null() "use-soft-float"="true" {10 call void asm sideeffect "", ""()11 ret void12}13