mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-17 18:10:31 +00:00
821e3334ed
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80578 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
309 B
ArmAsm
14 lines
309 B
ArmAsm
// RUN: not llvm-mc -triple i386-unknown-unknown %s 2> %t
|
|
// RUN: FileCheck -input-file %t %s
|
|
|
|
// Currently XFAIL'ed, since the front-end isn't validating this. Figure out the
|
|
// right resolution.
|
|
//
|
|
// XFAIL: *
|
|
|
|
.text
|
|
a:
|
|
.data
|
|
// CHECK: expected relocatable expression
|
|
.long -(0 + a)
|