repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ARM] Better OR's for MVE compares
[llvm-core.git]
/
test
/
MC
/
AsmParser
/
ifnes.s
blob
7a3cbe0264e1b5fcdde61c440d38557d665067d1
1
# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
2
3
# CHECK-NOT: .byte 0
4
# CHECK: .byte 1
5
.ifnes
"foo space"
,
"foo space"
6
.byte 0
7
.else
8
.byte 1
9
.endif
10
11
# CHECK-NOT: .byte 0
12
# CHECK: .byte 1
13
.ifnes
"unequal"
,
"unEqual"
14
.byte 1
15
.else
16
.byte 0
17
.endif
18
19
# CHECK-NOT: .byte 0
20
# CHECK: .byte 1
21
.ifnes
"equal"
,
"equal"
; .byte 0 ; .else ; .byte 1 ; .endif
22