1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/MC/AsmParser/macro-irp.s
Rafael Espindola 9efec1f548 Factor macro argument parsing into helper methods and add support for .irp.
Patch extracted from a larger one by the PaX team. I added the testcases
and tightened error handling a bit.

llvm-svn: 158523
2012-06-15 14:02:34 +00:00

9 lines
153 B
ArmAsm

// RUN: llvm-mc -triple x86_64-unknown-unknown %s | FileCheck %s
.irp reg,%eax,%ebx
pushl \reg
.endr
// CHECK: pushl %eax
// CHECK: pushl %ebx