Home | History | Annotate | Download | only in AsmParser
      1 // RUN: not llvm-mc -triple i386-apple-darwin10 %s 2> %t.err | FileCheck %s
      2 
      3 .macro test1
      4 .globl "$0 $1 $2 $$3 $n"
      5 .endmacro
      6 
      7 // CHECK: .globl "1 23  $3 2"
      8 test1 1, 2 3
      9 
     10