mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
81a09cf058
This is implemented by handling assignments to the '.' pseudo symbol as ".org" directives. Differential Revision: http://llvm-reviews.chandlerc.com/D2625 llvm-svn: 201530
10 lines
295 B
ArmAsm
10 lines
295 B
ArmAsm
# Historically 'as' treats '.' as a reference to the current location in
|
|
# arbitrary contexts. We don't support this in general.
|
|
|
|
# RUN: not llvm-mc -triple i386-unknown-unknown %s 2> %t
|
|
# RUN: FileCheck -input-file %t %s
|
|
|
|
# CHECK: invalid use of pseudo-symbol '.' as a label
|
|
.:
|
|
.long 0
|