Heuristic: If the number of operands in the alias are more than the number of
[llvm/stm8.git] / test / MC / AsmParser / conditional_asm.s
blobf619ef9bb428a4fe53958d961a8a8f6020375dfe
1 # RUN: llvm-mc -triple i386-unknown-unknown %s -I %p | FileCheck %s
3 # CHECK: .byte 2
4 .if 1+2
5 .if 1-1
6 .byte 1
7 .elseif 2+2
8 .byte 1+1
9 .else
10 .byte 0
11 .endif
12 .endif