mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
9c30c492df
Introduce a variable in the AsmParserExtension whether [] is valid in an expression. If it is true, parse them like (). Enable this for ELF only. llvm-svn: 126443
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]
|