• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: llvm-mc -triple x86_64-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