repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ARM] More MVE compare vector splat combines for ANDs
[llvm-complete.git]
/
test
/
CodeGen
/
SystemZ
/
branch-01.ll
blob
12ed2d32a801a403317078c680f5be4060bb741a
1
; Test a simple unconditional jump.
2
;
3
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
4
5
define void @f1(i8 *%dest) {
6
; CHECK-LABEL: f1:
7
; CHECK: .L[[LABEL:.*]]:
8
; CHECK: mvi 0(%r2), 1
9
; CHECK: j .L[[LABEL]]
10
br label %loop
11
loop:
12
store volatile i8 1, i8 *%dest
13
br label %loop
14
}