mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 15:33:33 +00:00
10 lines
189 B
ArmAsm
10 lines
189 B
ArmAsm
|
# RUN: not llvm-mc -filetype=obj -triple i386-unknown-unknown %s 2> %t
|
||
|
# RUN: FileCheck -input-file %t %s
|
||
|
|
||
|
|
||
|
.extern foo
|
||
|
|
||
|
# CHECK: error: expected absolute expression
|
||
|
. = foo + 10
|
||
|
.byte 1
|