Home | History | Annotate | Download | only in X86

Lines Matching full:void

3 declare void @lazy() nonlazybind
4 declare void @not()
9 define void @foo() nounwind {
10 call void @not()
11 call void @lazy()
12 ret void
17 define void @tail_call_regular() nounwind {
18 tail call void @not()
19 ret void
24 define void @tail_call_eager() nounwind {
25 tail call void @lazy()
26 ret void