mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
93c65e6e66
Introduce a variable in the AsmParserExtension whether [] is valid in an expression. If it is true, parse them like (). Enable this for ELF only. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126443 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
233 B
ArmAsm
9 lines
233 B
ArmAsm
// RUN: not llvm-mc -triple i386-unknown-unknown %s 2> %t1 > %t2
|
|
// RUN: FileCheck < %t1 %s
|
|
|
|
// CHECK: error: expected ']' in brackets expression
|
|
.size x, [.-x)
|
|
|
|
// CHECK: error: expected ')' in parentheses expression
|
|
.size y, (.-y]
|