mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01: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'
|
||
|
|