13 lines · plain
1# RUN: not llvm-mc %s -triple=mips -mcpu=mips32r2 2>&1 | \2# RUN: FileCheck %s --check-prefix=ALL3 4 .text5 .set noat6foo:7 blt $a2, 16, foo # ALL: :[[@LINE]]:5: error: pseudo-instruction requires $at, which is not available8 .set at9 .set noreorder10 .set nomacro11 blt $a2, 16, foo # ALL: :[[@LINE]]:5: warning: macro instruction expanded into multiple instructions12 # ALL-NOT: :[[@LINE-1]]:5: warning: macro instruction expanded into multiple instructions13