aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/Verifier/tailcc-musttail.ll
blob: 2f0ce4f4b55e09bc003bf9c954faa24e7764774c (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
; RUN: not opt -passes=verify %s 2>&1 | FileCheck %s

declare tailcc void @simple()

define tailcc void @inreg(ptr inreg) {
; CHECK: inreg attribute not allowed in tailcc musttail caller
  musttail call tailcc void @simple()
  ret void
}

define tailcc void @inalloca(ptr inalloca(i8)) {
; CHECK: inalloca attribute not allowed in tailcc musttail caller
  musttail call tailcc void @simple()
  ret void
}

define tailcc void @swifterror(ptr swifterror) {
; CHECK: swifterror attribute not allowed in tailcc musttail caller
  musttail call tailcc void @simple()
  ret void
}

define tailcc void @preallocated(ptr preallocated(i8)) {
; CHECK: preallocated attribute not allowed in tailcc musttail caller
  musttail call tailcc void @simple()
  ret void
}

define tailcc void @byref(ptr byref(i8)) {
; CHECK: byref attribute not allowed in tailcc musttail caller
  musttail call tailcc void @simple()
  ret void
}

define tailcc void @call_inreg() {
; CHECK: inreg attribute not allowed in tailcc musttail callee
  musttail call tailcc void @inreg(ptr inreg undef)
  ret void
}

define tailcc void @call_inalloca() {
; CHECK: inalloca attribute not allowed in tailcc musttail callee
  musttail call tailcc void @inalloca(ptr inalloca(i8) undef)
  ret void
}

define tailcc void @call_swifterror() {
; CHECK: swifterror attribute not allowed in tailcc musttail callee
  %err = alloca swifterror ptr
  musttail call tailcc void @swifterror(ptr swifterror %err)
  ret void
}

define tailcc void @call_preallocated() {
; CHECK: preallocated attribute not allowed in tailcc musttail callee
  musttail call tailcc void @preallocated(ptr preallocated(i8) undef)
  ret void
}

define tailcc void @call_byref() {
; CHECK: byref attribute not allowed in tailcc musttail callee
  musttail call tailcc void @byref(ptr byref(i8) undef)
  ret void
}


declare tailcc void @varargs(...)
define tailcc void @call_varargs(...) {
; CHECK: cannot guarantee tailcc tail call for varargs function
  musttail call tailcc void(...) @varargs(...)
  ret void
}