[lldb-dap] Ensure the IO forwarding threads are managed by the DAP object lifecycle...
[llvm-project.git] / llvm / test / MC / ARM / arm-movt-movw-range-fail.s
blob2961b9bfcb64d25ff01cdeea2066651a4f46f136
1 @RUN: not llvm-mc -triple armv7-eabi -filetype obj -o - %s 2>&1 | FileCheck %s
3 .global v
4 .text
5 movw r1, #:lower16:v + -65536
6 movt r1, #:upper16:v + 65536
8 @CHECK: error: Relocation Not In Range
9 @CHECK: movw r1, #:lower16:v + -65536
10 @CHECK: ^
11 @CHECK: error: Relocation Not In Range
12 @CHECK: movt r1, #:upper16:v + 65536
13 @CHECK: ^