llvm-6502/test/MC/AsmParser/conditional_asm.s
Saleem Abdulrasool 69f706d9e1 MCAsmParser: support .ifne
The .ifne directive assembles the following section of code if the argument
expression is non-zero.  Effectively, it is equivalent to if.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201986 91177308-0d34-0410-b5e6-96231b3b80d8
2014-02-23 15:53:41 +00:00

22 lines
286 B
ArmAsm

# RUN: llvm-mc -triple i386-unknown-unknown %s -I %p | FileCheck %s
# CHECK: .byte 2
.if 1+2
.if 1-1
.byte 1
.elseif 2+2
.byte 1+1
.else
.byte 0
.endif
.endif
# CHECK: .byte 1
# CHECK-NOT: .byte 0
.ifne 32 - 32
.byte 0
.else
.byte 1
.endif