mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
10 lines
168 B
ArmAsm
10 lines
168 B
ArmAsm
|
// RUN: not llvm-mc -n -triple i386-unknown-unknown %s 2> %t
|
||
|
// RUN: FileCheck < %t %s
|
||
|
|
||
|
.equ a, 0
|
||
|
.set a, 1
|
||
|
.equ a, 2
|
||
|
.equiv a, 3
|
||
|
// CHECK: error: redefinition of 'a'
|
||
|
|