[Assembler] Allow non-fatal errors after parsing
[oota-llvm.git] / test / MC / ARM / thumb1-relax-ldrlit-local-range.s
1 @ RUN: not llvm-mc -triple thumbv6m-none-macho -filetype=obj -o /dev/null %s 2>&1 | FileCheck --check-prefix=CHECK-ERROR %s
2
3         .global func1
4 _func1:
5         ldr r0, L_far
6         .space 1024
7
8         .p2align 2
9 L_far:
10         .word 42
11
12 @ CHECK-ERROR: out of range pc-relative fixup value
13