[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / MC / Mips / macro-la-bad.s
blob70b8facc2db954ff59b4c30a49db28b32eaab108
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: llvm-mc %s -arch=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