The test failed on Windows. I've changed the platform to run to "x86_64-apple-darwin".
[oota-llvm.git] / test / MC / AsmParser / macros-darwin.s
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