blob: d66fd1fb752d486ad05d7df4dcdfc2b696f9597f [file] [log] [blame]
Mehdi Amini945a6602015-02-27 18:32:11 +00001; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr7 | FileCheck %s --check-prefix=ELF64
Bill Schmidt03008132013-08-25 22:33:42 +00002
Eric Christopher1fb23392015-07-24 01:07:50 +00003define void @t1(i8* %x) nounwind {
Bill Schmidt03008132013-08-25 22:33:42 +00004entry:
5; ELF64: t1
6 br label %L0
7
8L0:
9 br label %L1
10
11L1:
12 indirectbr i8* %x, [ label %L0, label %L1 ]
13; ELF64: mtctr 3
14; ELF64: bctr
15}