mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
dcc729c605
The directive name is not useful because the next line replicates the error line which includes the directive.
11 lines
251 B
ArmAsm
11 lines
251 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
|
|
// CHECK: :[[#@LINE+1]]:11: error: redefinition of 'a'
|
|
.equiv a, 3
|
|
// CHECK: :[[#@LINE+1]]:12: error: missing expression
|
|
.set b, ""
|