brintos

brintos / llvm-project-archived public Read only

0
0
Text · 496 B · b1dfa42 Raw
12 lines · plain
1# RUN: not llvm-mc %s -triple=mips -mcpu=mips32r2 2>%t12# RUN: FileCheck %s < %t1 --check-prefix=32-BIT3# RUN: not llvm-mc %s -triple=mips64 -mcpu=mips64 -target-abi n32 2>&1 | \4# RUN:   FileCheck %s --check-prefix=64-BIT5# RUN: not llvm-mc %s -triple=mips64 -mcpu=mips64 -target-abi n64 2>&1 | \6# RUN:   FileCheck %s --check-prefix=64-BIT7 8  .text9  li $5, 0x10000000010  # 32-BIT: :[[@LINE-1]]:10: error: expected 32-bit immediate11  # 64-BIT: :[[@LINE-2]]:10: error: expected 32-bit immediate12