macros-darwin.s revision 73477b9f32da6488f2883f33fd17fa0de61f2bd1
1// RUN: llvm-mc -triple i386-apple-darwin10 %s | FileCheck %s
2
3.macro test1
4.globl "$0 $1 $2 $$3 $n"
5.endmacro
6
7// CHECK: .globl "1 23  $3 2"
8test1 1, 2 3
9
10