repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git]
/
llvm
/
test
/
MC
/
SystemZ
/
machine-directive.s
blob
aa71c6aea5572bfbd7043d73b302e37249645e8a
1
# RUN: not llvm-mc -triple=s390x-linux-gnu %s --filetype=asm 2>&1 | FileCheck %s
2
3
# CHECK: error: instruction requires: vector
4
# CHECK: vgbm %v0, 1
5
# CHECK: ^
6
7
# CHECK-NOT: error:
8
# CHECK: .machine z13
9
# CHECK: vgbm %v0, 0
10
# CHECK: .machine zEC12
11
# CHECK: .machine z13
12
# CHECK: vgbm %v0, 3
13
14
.machine z13
15
vgbm
%
v0
,
0
16
.machine zEC12
17
vgbm
%
v0
,
1
18
.machine z13
19
vgbm
%
v0
,
3
20