Home | History | Annotate | Download | only in CodeGen

Lines Matching full:void

11 extern void takes_union_with_first_floats(union_with_first_floats a);
12 extern union_with_first_floats returns_union_with_first_floats(void);
14 void test_union_with_first_floats(void) {
17 // CHECK: declare arm_aapcs_vfpcc void @takes_union_with_first_floats([4 x i32])
19 void test_return_union_with_first_floats(void) {
22 // CHECK: declare arm_aapcs_vfpcc void @returns_union_with_first_floats(%union.union_with_first_floats* sret)
31 extern void takes_union_with_non_first_floats(union_with_non_first_floats a);
32 extern union_with_non_first_floats returns_union_with_non_first_floats(void);
34 void test_union_with_non_first_floats(void) {
37 // CHECK: declare arm_aapcs_vfpcc void @takes_union_with_non_first_floats([4 x i32])
39 void test_return_union_with_non_first_floats(void) {
42 // CHECK: declare arm_aapcs_vfpcc void @returns_union_with_non_first_floats(%union.union_with_non_first_floats* sret)
51 extern void takes_struct_with_union_with_first_floats(struct_with_union_with_first_floats a);
52 extern struct_with_union_with_first_floats returns_struct_with_union_with_first_floats(void);
54 void test_struct_with_union_with_first_floats(void) {
57 // CHECK: declare arm_aapcs_vfpcc void @takes_struct_with_union_with_first_floats([5 x i32])
59 void test_return_struct_with_union_with_first_floats(void) {
62 // CHECK: declare arm_aapcs_vfpcc void @returns_struct_with_union_with_first_floats(%struct.struct_with_union_with_first_floats* sret)
71 extern void takes_struct_with_union_with_non_first_floats(struct_with_union_with_non_first_floats a);
72 extern struct_with_union_with_non_first_floats returns_struct_with_union_with_non_first_floats(void);
74 void test_struct_with_union_with_non_first_floats(void) {
77 // CHECK: declare arm_aapcs_vfpcc void @takes_struct_with_union_with_non_first_floats([5 x i32])
79 void test_return_struct_with_union_with_non_first_floats(void) {
82 // CHECK: declare arm_aapcs_vfpcc void @returns_struct_with_union_with_non_first_floats(%struct.struct_with_union_with_non_first_floats* sret)
85 extern void takes_array_of_floats(float a[4]);
86 void test_array_of_floats(void) {
90 // CHECK: declare arm_aapcs_vfpcc void @takes_array_of_floats(float*)
98 extern void takes_struct_with_fundamental_elems(struct_with_fundamental_elems a);
99 extern struct_with_fundamental_elems returns_struct_with_fundamental_elems(void);
101 void test_struct_with_fundamental_elems(void) {
103 // CHECK: call arm_aapcs_vfpcc void @takes_struct_with_fundamental_elems(float {{.*}}, float {{.*}}, float{{.*}}, float {{.*}})
105 // CHECK: declare arm_aapcs_vfpcc void @takes_struct_with_fundamental_elems(float, float, float, float)
107 void test_return_struct_with_fundamental_elems(void) {
119 extern void takes_struct_with_array(struct_with_array a);
120 extern struct_with_array returns_struct_with_array(void);
122 void test_struct_with_array(void) {
124 // CHECK: call arm_aapcs_vfpcc void @takes_struct_with_array(float {{.*}}, float {{.*}}, float {{.*}}, float {{.*}})
126 // CHECK: declare arm_aapcs_vfpcc void @takes_struct_with_array(float, float, float, float)
128 void test_return_struct_with_array(void) {
141 extern void takes_union_with_struct_with_fundamental_elems(union_with_struct_with_fundamental_elems a);
142 extern union_with_struct_with_fundamental_elems returns_union_with_struct_with_fundamental_elems(void);
144 void test_union_with_struct_with_fundamental_elems(void) {
146 // CHECK: call arm_aapcs_vfpcc void @takes_union_with_struct_with_fundamental_elems(float {{.*}}, float {{.*}}, float {{.*}}, float {{.*}})
148 // CHECK: declare arm_aapcs_vfpcc void @takes_union_with_struct_with_fundamental_elems(float, float, float, float)
150 void test_return_union_with_struct_with_fundamental_elems(void) {