Revert 374373: [Codegen] Alter the default promotion for saturating adds and subs
[llvm-core.git] / test / CodeGen / ARM / fast-isel-indirectbr.ll
blob91648d36a69460952781c8b3b918ab81e11a2746
1 ; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -relocation-model=dynamic-no-pic -mtriple=armv7-apple-ios | FileCheck %s --check-prefix=ARM
2 ; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -relocation-model=dynamic-no-pic -mtriple=armv7-linux-gnueabi | FileCheck %s --check-prefix=ARM
3 ; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -relocation-model=dynamic-no-pic -mtriple=thumbv7-apple-ios | FileCheck %s --check-prefix=THUMB
5 define void @t1(i8* %x) {
6 entry:
7 ; ARM: t1
8 ; THUMB: t1
9   br label %L0
11 L0:
12   br label %L1
14 L1:
15   indirectbr i8* %x, [ label %L0, label %L1 ]
16 ; ARM: bx r0
17 ; THUMB: mov pc, r0