Centralize the handling of unique ids for temporary labels.
[oota-llvm.git] / test / MC / AsmParser / vararg-default-value.s
1 // RUN: llvm-mc -triple x86_64-linux-gnu %s | FileCheck %s
2 .macro abc arg:vararg=nop
3   \arg
4 .endm
5
6 .macro abcd arg0=%eax arg1:vararg=%ebx
7   movl \arg0, \arg1
8 .endm
9
10 .text
11
12 // CHECK: nop
13   abc
14 // CHECK: movl %eax, %ebx
15   abcd ,