mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
9efec1f548
Patch extracted from a larger one by the PaX team. I added the testcases and tightened error handling a bit. llvm-svn: 158523
11 lines
170 B
ArmAsm
11 lines
170 B
ArmAsm
// RUN: not llvm-mc -triple x86_64-unknown-unknown %s 2> %t
|
|
// RUN: FileCheck < %t %s
|
|
|
|
.macro foo bar
|
|
.long \bar
|
|
.endm
|
|
|
|
foo 42, 42
|
|
|
|
// CHECK: Too many arguments
|