mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
f0a90b93e6
Currently, the error messages we emit for the .org directive when the expression is not absolute or is out of range do not include the line number of the directive, so it can be hard to track down the problem if a file contains many .org directives. This patch stores the source location in the MCOrgFragment, so that it can be used for diagnostics emitted during layout. Since layout is an iterative process, and the errors are detected during each iteration, it would have been possible for errors to be reported multiple times. To prevent this, I've made the assembler bail out after each iteration if any errors have been reported. This will still allow multiple unrelated errors to be reported in the common case where they are all detected in the first round of layout. Differential Revision: https://reviews.llvm.org/D27411 llvm-svn: 289643
34 lines
796 B
ArmAsm
34 lines
796 B
ArmAsm
@ RUN: not llvm-mc -triple armv7a--none-eabi -filetype obj < %s -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
@ Note: These errors are not always emitted in the order in which the relevant
|
|
@ source appears, this file is carefully ordered so that that is the case.
|
|
|
|
.text
|
|
@ CHECK: :[[@LINE+1]]:{{[0-9]+}}: error: symbol 'undef' can not be undefined in a subtraction expression
|
|
.word (0-undef)
|
|
|
|
@ CHECK: :[[@LINE+1]]:{{[0-9]+}}: error: expected relocatable expression
|
|
.word -undef
|
|
|
|
@ CHECK: :[[@LINE+1]]:{{[0-9]+}}: error: No relocation available to represent this relative expression
|
|
adr r0, #a-undef
|
|
|
|
@ CHECK: :[[@LINE+1]]:{{[0-9]+}}: error: Cannot represent a difference across sections
|
|
.word x_a - y_a
|
|
|
|
|
|
|
|
w:
|
|
.word 0
|
|
.weak w
|
|
|
|
|
|
.section sec_x
|
|
x_a:
|
|
.word 0
|
|
|
|
|
|
.section sec_y
|
|
y_a:
|
|
.word 0
|