Home | History | Annotate | Download | only in CodeGen

Lines Matching full:void

4 // CHECK: declare extern_weak void @test1_f()
5 void test1_f(void);
6 static void test1_g(void) __attribute__((weakref("test1_f")));
7 void test1_h(void) {
11 // CHECK: define void @test2_f()
12 void test2_f(void) {}
13 static void test2_g(void) __attribute__((weakref("test2_f")));
14 void test2_h(void) {
18 // CHECK: declare void @test3_f()
19 void test3_f(void);
20 static void test3_g(void) __attribute__((weakref("test3_f")));
21 void test3_foo(void) {
24 void test3_h(void) {
28 // CHECK: define void @test4_f()
29 void test4_f(void);
30 static void test4_g(void) __attribute__((weakref("test4_f")));
31 void test4_h(void) {
34 void test4_f(void) {}
36 // CHECK: declare void @test5_f()
37 void test5_f(void);
38 static void test5_g(void) __attribute__((weakref("test5_f")));
39 void test5_h(void) {
42 void test5_foo(void) {
46 // CHECK: declare extern_weak void @test6_f()
47 void test6_f(void) __attribute__((weak));
48 static void test6_g(void) __attribute__((weakref("test6_f")));
49 void test6_h(void) {
52 void test6_foo(void) {
56 // CHECK: declare extern_weak void @test7_f()
57 void test7_f(void);
58 static void test7_g(void) __attribute__((weakref("test7_f")));
59 static void *const test7_zed = (void *) &test7_g;
60 void* test7_h(void) {