summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/call-noret.ll
blob: d294f2cf1abaf80021478fd54512ac31a000ff9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
; RUN: llc < %s -mtriple=armv7-apple-ios -mcpu=cortex-a8   | FileCheck %s -check-prefix=ARM
; RUN: llc < %s -mtriple=armv7-apple-ios -mcpu=swift       | FileCheck %s -check-prefix=SWIFT
; RUN: llc < %s -mtriple=thumbv7-apple-ios -mcpu=cortex-a8 | FileCheck %s -check-prefix=T2
; rdar://8979299

define void @t1() noreturn nounwind ssp {
entry:
; ARM: t1:
; ARM: mov lr, pc
; ARM: b _bar

; SWIFT: t1:
; SWIFT: mov lr, pc
; SWIFT: b _bar

; T2: t1:
; T2: blx _bar
  tail call void @bar() noreturn nounwind
  unreachable
}

define void @t2() noreturn nounwind ssp {
entry:
; ARM: t2:
; ARM: mov lr, pc
; ARM: b _t1

; SWIFT: t2:
; SWIFT: mov lr, pc
; SWIFT: b _t1

; T2: t2:
; T2: mov lr, pc
; T2: b.w _t1
  tail call void @t1() noreturn nounwind
  unreachable
}

declare void @bar() noreturn