On Thu, 2015-10-15 at 22:03 +0000, Benedikt Huber wrote: > > +/* Add builtins for reciprocal square root. */ > + > +void > +aarch64_init_builtin_rsqrt (void) > +{ > + tree fndecl = NULL; > + tree ftype = NULL; > + > + tree V2SF_type_node = build_vector_type (float_type_node, 2); > + tree V2DF_type_node = build_vector_type (double_type_node, 2); > + tree V4SF_type_node = build_vector_type (float_type_node, 4); > + > + typedef struct > + { > + tree type_node; > + const char *builtin_name; > + int function_code; > + } builtin_decls_data;
There is an ongoing effort to remove all the unnecessary typedef struct and enum etc stuff. Please try not to add more of it. Cheers, Oleg