[ORC-RT][LoongArch] Add initial support for loongarch64 in ELFNixPlatform (#123575)
[llvm-project.git] / llvm / test / MC / Mips / macro-la-bad.s
blob7728785041ffc9eda37d4b3546d3ea03ca342af2
1 # RUN: not llvm-mc %s -triple=mips -mcpu=mips32r2 2>%t1
2 # RUN: FileCheck %s < %t1 --check-prefix=O32
3 # RUN: not llvm-mc %s -triple=mips64 -mcpu=mips64 -target-abi n32 2>&1 | \
4 # RUN: FileCheck %s --check-prefix=N32
5 # RUN: llvm-mc %s -triple=mips64 -mcpu=mips64 -target-abi n64 2>&1 | \
6 # RUN: FileCheck %s --check-prefix=N64
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: warning: la used to load 64-bit address
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: warning: la used to load 64-bit address
19 la $5, symbol
20 # N32-NOT: :[[@LINE-1]]:3: warning: la used to load 64-bit address
21 # N64: :[[@LINE-2]]:3: warning: la used to load 64-bit address