llvm-capstone/llvm/test/MC/ARM/symbol-variants-errors.s
Fangrui Song 426437d1fe [MC] Add MCAsmParser::parseRParen to improve consistency and simplify code
Some diagnostics are more verbose but they don't seem to be more useful than
simple `expected ')'`
2022-01-27 00:37:49 -08:00

23 lines
529 B
ArmAsm

@ RUN: not llvm-mc < %s -triple armv7-none-linux-gnueabi 2>&1 | FileCheck %s
@ check for invalid variant
f1:
bl bar(blargh)
@CHECK: error: invalid variant 'blargh'
@CHECK: bl bar(blargh)
@CHECK: ^
@ check for missing closed paren
f2:
.word bar(got
@CHECK: :[[#@LINE-1]]:16: error: expected ')'
@CHECK: .word bar(got
@CHECK: ^
@ check for invalid symbol before variant end
f3:
.word bar(got+2)
@CHECK: :[[#@LINE-1]]:16: error: expected ')'
@CHECK: .word bar(got+2)
@CHECK: ^