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
/
ifeqs.s
blob
05a26a237fcd3966b75e187c61be45ae1b94e2a4
1
//
RUN
:
llvm-mc
-
triple i386
%
s | FileCheck
%
s
2
3
.ifeqs
"alpha"
,
"alpha"
4
.byte 1
5
.else
6
.byte 0
7
.endif
8
9
//
CHECK-
NOT
:
.byte 0
10
//
CHECK
:
.byte 1
11
12
.ifeqs
"alpha"
,
"alpha "
13
.byte 0
14
.else
15
.byte 1
16
.endif
17
18
//
CHECK-
NOT
:
.byte 0
19
//
CHECK
:
.byte 1
20