Mercurial > hg > CbC > CbC_llvm
view test/MC/AsmParser/ifnes.s @ 121:803732b1fca8
LLVM 5.0
author | kono |
---|---|
date | Fri, 27 Oct 2017 17:07:41 +0900 |
parents | afa8332a0e37 |
children |
line wrap: on
line source
# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s # CHECK-NOT: .byte 0 # CHECK: .byte 1 .ifnes "foo space", "foo space" .byte 0 .else .byte 1 .endif # CHECK-NOT: .byte 0 # CHECK: .byte 1 .ifnes "unequal", "unEqual" .byte 1 .else .byte 0 .endif # CHECK-NOT: .byte 0 # CHECK: .byte 1 .ifnes "equal", "equal" ; .byte 0 ; .else ; .byte 1 ; .endif