1# RUN: not llvm-mc %s -arch=mips -mcpu=mips32r2 2>%t1 2# RUN: FileCheck %s < %t1 --check-prefix=O32 3# RUN: not llvm-mc %s -arch=mips64 -mcpu=mips64 -target-abi n32 2>&1 | \ 4# RUN: FileCheck %s --check-prefix=N32 5# RUN: not llvm-mc %s -arch=mips64 -mcpu=mips64 -target-abi n64 2>&1 | \ 6# RUN: FileCheck %s --check-prefix=N64 7 8 .text 9 la $5, 0x100000000 10 # O32: :[[@LINE-1]]:3: error: instruction requires a 32-bit immediate 11 # N32: :[[@LINE-2]]:3: error: instruction requires a 32-bit immediate 12 # N64: :[[@LINE-3]]:3: error: la used to load 64-bit address 13 14 la $5, 0x100000000($6) 15 # O32: :[[@LINE-1]]:3: error: instruction requires a 32-bit immediate 16 # N32: :[[@LINE-2]]:3: error: instruction requires a 32-bit immediate 17 # N64: :[[@LINE-3]]:3: error: la used to load 64-bit address 18 19 # FIXME: These should be warnings but we lack la -> dla promotion at the 20 # moment. 21 la $5, symbol 22 # N32-NOT: :[[@LINE-1]]:3: error: la used to load 64-bit address 23 # N64: :[[@LINE-2]]:3: error: la used to load 64-bit address 24