You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
243 B
17 lines
243 B
4 months ago
|
# 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
|
||
|
|