mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
b32d97ac38
We now always create the fragment, which lets us handle things like .org after a .align. llvm-svn: 252101
10 lines
184 B
ArmAsm
10 lines
184 B
ArmAsm
# RUN: not llvm-mc -filetype=obj -triple i386-unknown-unknown %s 2> %t
|
|
# RUN: FileCheck -input-file %t %s
|
|
|
|
|
|
.extern foo
|
|
|
|
# CHECK: : expected absolute expression
|
|
. = foo + 10
|
|
.byte 1
|