llvm-mirror/test/MC/AsmParser/macro-duplicate-params-names-err.s
Justin Bogner 34e32c59b8 Add triples or specify REQUIRES: default_triple to some tests
These were all failing when building the X86 backend but specifying
LLVM_DEFAULT_TARGET_TRIPLE=''.

llvm-svn: 323608
2018-01-27 23:31:09 +00:00

9 lines
158 B
ArmAsm

// RUN: not llvm-mc %s 2> %t
// RUN: FileCheck < %t %s
// REQUIRES: default_triple
.macro M a a
.endm
// CHECK: macro 'M' has multiple parameters named 'a'