mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
7a570d09ac
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108654 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
163 B
ArmAsm
14 lines
163 B
ArmAsm
// RUN: llvm-mc %s | FileCheck %s
|
|
|
|
.macro .make_macro
|
|
$0 $1
|
|
$2 $3
|
|
$4
|
|
.endmacro
|
|
|
|
.make_macro .macro,.mybyte,.byte,$0,.endmacro
|
|
|
|
.data
|
|
// CHECK: .byte 10
|
|
.mybyte 10
|