Home | History | Annotate | Download | only in CodeGen

Lines Matching full:void

12 void t14(void) {
29 // CHECK: @t9 = alias weak bitcast (void ()* @__t8 to void (...)*)
30 void __t8() {}
31 void t9() __attribute__((weak, alias("__t8")));
34 int __attribute__((weak_import)) t15(void);
39 // CHECK: define void @t1() noreturn nounwind {
40 void t1() __attribute__((noreturn));
41 void t1() { while (1) {} }
43 // CHECK: define void @t2() nounwind {
44 void t2() __attribute__((nothrow));
45 void t2() {}
47 // CHECK: define weak void @t3() nounwind {
48 void t3() __attribute__((weak));
49 void t3() {}
51 // CHECK: define hidden void @t4() nounwind {
52 void t4() __attribute__((visibility("hidden")));
53 void t4() {}
55 // CHECK: define void @t7() noreturn nounwind {
56 void t7() __attribute__((noreturn, nothrow));
57 void t7() { while (1) {} }
59 // CHECK: define void @t10() nounwind section "SECT" {
60 void t10(void) __attribute__((section("SECT")));
61 void t10(void) {}
62 // CHECK: define void @t11() nounwind section "SECT" {
63 void __attribute__((section("SECT"))) t11(void) {}
66 extern int t19(void) __attribute__((weak_import));
67 int t19(void) {
71 // CHECK:define void @t20() nounwind {
72 // CHECK: call void @abort()
74 void t20(void) {
78 void (__attribute__((fastcall)) *fptr)(int);
79 void t21(void) {
82 // CHECK: [[FPTRVAR:%[a-z0-9]+]] = load void (i32)** @fptr
83 // CHECK-NEXT: call x86_fastcallcc void [[FPTRVAR]](i32 10)