mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
9 lines
153 B
ArmAsm
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
|