mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-27 07:12:06 +00:00
597ed351cb
Prevent partial parsing of '$' or '@' of invalid identifiers and fixup workaround points. NFC Intended. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@284017 91177308-0d34-0410-b5e6-96231b3b80d8
23 lines
841 B
ArmAsm
23 lines
841 B
ArmAsm
# RUN: not llvm-mc %s -triple mips64-unknown-unknown 2>%t1
|
|
# RUN: FileCheck %s < %t1 -check-prefix=ASM
|
|
|
|
.text
|
|
.option pic2
|
|
t1:
|
|
.cpsetup $bar, 8, __cerror
|
|
# ASM: :[[@LINE-1]]:18: error: expected register containing function address
|
|
.cpsetup $33, 8, __cerror
|
|
# ASM: :[[@LINE-1]]:18: error: invalid register
|
|
.cpsetup $31, foo, __cerror
|
|
# ASM: :[[@LINE-1]]:23: error: expected save register or stack offset
|
|
.cpsetup $31, $32, __cerror
|
|
# ASM: :[[@LINE-1]]:23: error: invalid register
|
|
.cpsetup $25, $2, $3
|
|
# ASM: :[[@LINE-1]]:27: error: expected expression
|
|
.cpsetup $25, $2, 4
|
|
# ASM: :[[@LINE-1]]:28: error: expected symbol
|
|
.cpsetup $25, $2, 4+65
|
|
# ASM: :[[@LINE-1]]:31: error: expected symbol
|
|
.cpsetup $25, $2, foo+4
|
|
# ASM: :[[@LINE-1]]:32: error: expected symbol
|