aboutsummaryrefslogtreecommitdiffstats
path: root/test/MC/AArch64/ldr-pseudo-diagnostics.s
blob: e32c516795282bf00db0dd02ab1b67df93ff9956 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//RUN: not llvm-mc -triple=aarch64-linux-gnu - < %s 2>&1 | FileCheck --check-prefix=CHECK-ERROR %s

// simple test
.section a, "ax", @progbits
f1:
  ldr w0, =0x100000001
// CHECK-ERROR: error: Immediate too large for register
// CHECK-ERROR:   ldr w0, =0x100000001
// CHECK-ERROR:           ^
f2:
  ldr w0, =-0x80000001
// CHECK-ERROR: error: Immediate too large for register
// CHECK-ERROR:  ldr w0, =-0x80000001
// CHECK-ERROR:          ^