1// RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
2
3.irp reg,%eax,%ebx
4        pushl \reg
5.endr
6
7// CHECK: pushl %eax
8// CHECK: pushl %ebx
9