Lines Matching full:table

18 __externref_t t7[0];             // expected-error {{WebAssembly table must be static}}
20 static __externref_t (*t9)[0]; // expected-error {{cannot form a pointer to a WebAssembly table}}
22 static __externref_t table[0]; variable
33 __externref_t (*f7)[0]; // expected-error {{cannot form a pointer to a WebAssembly table}}
43 __externref_t (*f7)[0]; // expected-error {{cannot form a pointer to a WebAssembly table}}
46 void illegal_argument_1(__externref_t table[]); // expected-error {{cannot use WebAssembly tabl…
47 void illegal_argument_2(__externref_t table[0][0]); // expected-error {{multi-dimensional arrays of…
48 void illegal_argument_3(__externref_t *table); // expected-error {{pointer to WebAssembly refe…
49 void illegal_argument_4(__externref_t ***table); // expected-error {{pointer to WebAssembly refe…
50 …id illegal_argument_5(__externref_t (*table)[0]); // expected-error {{cannot form a pointer to a W…
51 void illegal_argument_6(__externref_t table[0]); // expected-error {{cannot use WebAssembly tabl…
55 …nref_t (*illegal_return_3())[0]; // expected-error {{cannot form a pointer to a WebAssembly table}}
68 …of(__externref_t[0]); // expected-error {{invalid application of 'sizeof' to WebAssembly table}} in func()
69 …sizeof(table); // expected-error {{invalid application of 'sizeof' to WebAssembly ta… in func()
78table); // expected-warning {{'_Alignof' applied to an expression is a GNU extension… in func()
84 …__externref_t lt1[0]; // expected-error {{WebAssembly table cannot be declared within a … in func()
85 …static __externref_t lt2[0]; // expected-error {{WebAssembly table cannot be declared within a … in func()
87 static __externref_t(*lt4)[0]; // expected-error {{cannot form a pointer to a WebAssembly table}} in func()
88 // conly-error@+2 {{cannot use WebAssembly table as a function parameter}} in func()
90 illegal_argument_1(table); in func()
91 …varargs(1, table); // expected-error {{cannot use WebAssembly table as a function par… in func()
92table == 1; // expected-error {{invalid operands to binary expression ('__attr… in func()
93 …1 >= table; // expected-error {{invalid operands to binary expression ('int' a… in func()
94table == other_table; // expected-error {{invalid operands to binary expression ('__attr… in func()
95table !=- table; // expected-error {{invalid argument type '__attribute__((address_… in func()
96 …!table; // expected-error {{invalid argument type '__attribute__((address_… in func()
97 …1 && table; // expected-error {{invalid operands to binary expression ('int' a… in func()
98table || 1; // expected-error {{invalid operands to binary expression ('__attr… in func()
99 …1 ? table : table; // expected-error {{cannot use a WebAssembly table within a branch… in func()
100table ? : other_table; // expected-error {{cannot use a WebAssembly table within a branch… in func()
101 (void *)table; // expected-error {{cannot cast from a WebAssembly table}} in func()
103 u = table; // expected-error {{cannot assign a WebAssembly table}} in func()
104 void *v = table; // expected-error {{cannot assign a WebAssembly table}} in func()
105 …&table; // expected-error {{cannot form a reference to a WebAssembly table in func()
106 (void)table; in func()
108 table[0]; // expected-error {{cannot subscript a WebAssembly table}} in func()
109 table[0] = ref; // expected-error {{cannot subscript a WebAssembly table}} in func()
112 …__externref_t oh_no_vlas[i]; // expected-error {{WebAssembly table cannot be declared within a … in func()
120 …static __externref_t t[0]; // expected-error {{WebAssembly table cannot be declared within a … in foo()
122 …static __externref_t t2[0]; // expected-error {{WebAssembly table cannot be declared within a fu… in foo()
124 …static __externref_t t3[0]; // expected-error {{WebAssembly table cannot be declared within a func… in foo()
128 …static __externref_t t4[0]; // expected-error {{WebAssembly table cannot be declared within a fu… in foo()
134 return table; // expected-error {{cannot return a WebAssembly table}} in ret_void_ptr()