blob: 18640b6617ea3d74d94622a435d074dd31b8c0fd (
plain)
1
2
3
4
5
6
|
# RUN: not llvm-mc -triple riscv32 < %s 2>&1 | FileCheck %s
jump 1234, x31 # CHECK: :[[@LINE]]:6: error: operand must be a valid jump target
jump foo@plt, x31 # CHECK: :[[@LINE]]:9: error: unexpected token
jump %pcrel_lo(1234), x31 # CHECK: :[[@LINE]]:6: error: unknown token in expression
jump foo@xxx # CHECK: :[[@LINE]]:9: error: unexpected token
|