Improve handling of .file, .include and .incbin directives to
[oota-llvm.git] / test / MC / AsmParser / conditional_asm.s
1 # RUN: llvm-mc -triple i386-unknown-unknown %s -I  %p | FileCheck %s
2
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