Home | History | Annotate | Download | only in CodeGen

Lines Matching full:void

3 // CHECK: define void @t3() nounwind noinline naked {
4 __declspec(naked) void t3() {}
6 // CHECK: define void @t22() nounwind
7 void __declspec(nothrow) t22();
8 void t22() {}
10 // CHECK: define void @t2() nounwind noinline {
11 __declspec(noinline) void t2() {}
13 // CHECK: call void @f20_t()
15 __declspec(noreturn) void f20_t(void);
16 void f20(void) { f20_t(); }