64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
19 lines
644 B
LLVM
19 lines
644 B
LLVM
; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -relocation-model=dynamic-no-pic -mtriple=armv7-apple-ios | FileCheck %s --check-prefix=ARM
|
|
; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -relocation-model=dynamic-no-pic -mtriple=armv7-linux-gnueabi | FileCheck %s --check-prefix=ARM
|
|
; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -relocation-model=dynamic-no-pic -mtriple=thumbv7-apple-ios | FileCheck %s --check-prefix=THUMB
|
|
|
|
define void @t1(i8* %x) {
|
|
entry:
|
|
; ARM: t1
|
|
; THUMB: t1
|
|
br label %L0
|
|
|
|
L0:
|
|
br label %L1
|
|
|
|
L1:
|
|
indirectbr i8* %x, [ label %L0, label %L1 ]
|
|
; ARM: bx r0
|
|
; THUMB: mov pc, r0
|
|
}
|