mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 23:32:27 +00:00
15 lines
501 B
ArmAsm
15 lines
501 B
ArmAsm
|
# RUN: not llvm-mc %s -triple=mipsel-unknown-linux -mcpu=mips32r2 2>%t1
|
||
|
# RUN: FileCheck %s < %t1
|
||
|
|
||
|
.text
|
||
|
.set pop
|
||
|
# CHECK: :[[@LINE-1]]:14: error: .set pop with no .set push
|
||
|
.set push
|
||
|
.set pop
|
||
|
.set pop
|
||
|
# CHECK: :[[@LINE-1]]:14: error: .set pop with no .set push
|
||
|
.set push foo
|
||
|
# CHECK: :[[@LINE-1]]:19: error: unexpected token, expected end of statement
|
||
|
.set pop bar
|
||
|
# CHECK: :[[@LINE-1]]:18: error: unexpected token, expected end of statement
|