mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-17 21:35:07 +00:00
10 lines
170 B
ArmAsm
10 lines
170 B
ArmAsm
|
// RUN: not llvm-mc -triple i386-apple-darwin10 %s 2> %t.err | FileCheck %s
|
||
|
|
||
|
.macro test1
|
||
|
.globl "$0 $1 $2 $$3 $n"
|
||
|
.endmacro
|
||
|
|
||
|
// CHECK: .globl "1 23 $3 2"
|
||
|
test1 1, 2 3
|
||
|
|