Home | History | Annotate | Download | only in AsmParser
      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
     13