mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-07 11:51:13 +00:00
17 lines
243 B
ArmAsm
17 lines
243 B
ArmAsm
|
# RUN: llvm-mc -triple i386 -o - %s | FileCheck %s
|
||
|
|
||
|
.macro required parameter:req
|
||
|
.long \parameter
|
||
|
.endm
|
||
|
|
||
|
required 0
|
||
|
# CHECK: .long 0
|
||
|
|
||
|
.macro required_with_default parameter:req=0
|
||
|
.long \parameter
|
||
|
.endm
|
||
|
|
||
|
required 1
|
||
|
# CHECK: .long 1
|
||
|
|