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 -verify %s 2>&1 | FileCheck %s
declare tailcc void @simple()
define tailcc void @inreg(i8* inreg) {
; CHECK: inreg attribute not allowed in tailcc musttail caller
musttail call tailcc void @simple()
ret void
}
define tailcc void @inalloca(i8* inalloca(i8)) {
; CHECK: inalloca attribute not allowed in tailcc musttail caller
musttail call tailcc void @simple()
ret void
}
define tailcc void @swifterror(i8** swifterror) {
; CHECK: swifterror attribute not allowed in tailcc musttail caller
musttail call tailcc void @simple()
ret void
}
define tailcc void @preallocated(i8* preallocated(i8)) {
; CHECK: preallocated attribute not allowed in tailcc musttail caller
musttail call tailcc void @simple()
ret void
}
define tailcc void @byref(i8* 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(i8* inreg undef)
ret void
}
define tailcc void @call_inalloca() {
; CHECK: inalloca attribute not allowed in tailcc musttail callee
musttail call tailcc void @inalloca(i8* inalloca(i8) undef)
ret void
}
define tailcc void @call_swifterror() {
; CHECK: swifterror attribute not allowed in tailcc musttail callee
%err = alloca swifterror i8*
musttail call tailcc void @swifterror(i8** swifterror %err)
ret void
}
define tailcc void @call_preallocated() {
; CHECK: preallocated attribute not allowed in tailcc musttail callee
musttail call tailcc void @preallocated(i8* preallocated(i8) undef)
ret void
}
define tailcc void @call_byref() {
; CHECK: byref attribute not allowed in tailcc musttail callee
musttail call tailcc void @byref(i8* 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
}
|