xref: /minix3/external/bsd/llvm/dist/llvm/test/MC/AsmParser/invalid-input-assertion.s (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc// RUN: not llvm-mc -triple i686-linux -o /dev/null %s
2*0a6a1f1dSLionel Sambuc
3*0a6a1f1dSLionel Sambuc	.macro macro parameter=0
4*0a6a1f1dSLionel Sambuc		.if \parameter
5*0a6a1f1dSLionel Sambuc		.else
6*0a6a1f1dSLionel Sambuc	.endm
7*0a6a1f1dSLionel Sambuc
8*0a6a1f1dSLionel Sambuc	macro 1
9*0a6a1f1dSLionel Sambuc
10