mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
6c753fab28
* Add locations * Use FileCheck --match-full-lines --strict-whitespace * Use CHECK-NEXT: * Merge related tests * Delete redundant tests * Improve test coverage Differential Revision: https://reviews.llvm.org/D77981
14 lines
192 B
ArmAsm
14 lines
192 B
ArmAsm
# RUN: llvm-mc -triple=x86_64-apple-darwin10 %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
|