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
[Alignment][NFC] Use Align with TargetLowering::setMinFunctionAlignment
[llvm-core.git]
/
test
/
CodeGen
/
PowerPC
/
fast-isel-indirectbr.ll
blob
d66fd1fb752d486ad05d7df4dcdfc2b696f9597f
1
; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr7 | FileCheck %s --check-prefix=ELF64
2
3
define void @t1(i8* %x) nounwind {
4
entry:
5
; ELF64: t1
6
br label %L0
7
8
L0:
9
br label %L1
10
11
L1:
12
indirectbr i8* %x, [ label %L0, label %L1 ]
13
; ELF64: mtctr 3
14
; ELF64: bctr
15
}