diff options
Diffstat (limited to 'gcc/gengtype.c')
| -rw-r--r-- | gcc/gengtype.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gcc/gengtype.c b/gcc/gengtype.c index ce60c788012..b9bef4df76c 100644 --- a/gcc/gengtype.c +++ b/gcc/gengtype.c @@ -617,7 +617,7 @@ type_for_name (const char *s) extern GTY(()) gcc::some_type *some_ptr; where the autogenerated functions will refer to simply "some_type", where they can be resolved into their namespace. */ - if (0 == strncmp(s, "gcc::", 5)) + if (0 == strncmp (s, "gcc::", 5)) s += 5; for (p = typedefs; p != NULL; p = p->next) @@ -953,7 +953,7 @@ create_field_at (pair_p next, type_p type, const char *name, options_p opt, /* Create a fake field with the given type and name. NEXT is the next field in the chain. */ #define create_field(next,type,name) \ - create_field_all(next,type,name, 0, this_file, __LINE__) + create_field_all (next,type,name, 0, this_file, __LINE__) /* Like create_field, but the field is only valid when condition COND is true. */ @@ -2131,7 +2131,7 @@ matching_file_name_substitute (const char *filnam, regmatch_t pmatch[10], else { /* This can happen only when files_rules is buggy! */ - gcc_unreachable(); + gcc_unreachable (); } /* Always skip the character after the dollar. */ pt++; @@ -2544,7 +2544,7 @@ output_mangled_typename (outf_p of, const_type_p t) oprintf (of, "%lu%s", (unsigned long) strlen (id_for_tag), id_for_tag); if (id_for_tag != t->u.s.tag) - free (CONST_CAST(char *, id_for_tag)); + free (CONST_CAST (char *, id_for_tag)); } break; case TYPE_PARAM_STRUCT: @@ -3329,7 +3329,7 @@ write_marker_function_name (outf_p of, type_p s, const char *prefix) const char *id_for_tag = filter_type_name (s->u.s.tag); oprintf (of, "gt_%sx_%s", prefix, id_for_tag); if (id_for_tag != s->u.s.tag) - free (CONST_CAST(char *, id_for_tag)); + free (CONST_CAST (char *, id_for_tag)); } else if (s->kind == TYPE_PARAM_STRUCT) { @@ -3663,7 +3663,7 @@ write_types (outf_p output_header, type_p structures, type_p param_structs, "#define gt_%sx_%s gt_%sx_%s\n", wtd->prefix, s->u.s.tag, wtd->prefix, t_id_for_tag); if (t_id_for_tag != t->u.s.tag) - free (CONST_CAST(char *, t_id_for_tag)); + free (CONST_CAST (char *, t_id_for_tag)); } else error_at_line (&s->u.s.line, @@ -3679,7 +3679,7 @@ write_types (outf_p output_header, type_p structures, type_p param_structs, wtd->prefix, s_id_for_tag); if (s_id_for_tag != s->u.s.tag) - free (CONST_CAST(char *, s_id_for_tag)); + free (CONST_CAST (char *, s_id_for_tag)); if (s->u.s.line.file == NULL) { @@ -4373,7 +4373,7 @@ write_root (outf_p f, pair_p v, type_p type, const char *name, int has_length, else oprintf (f, " NULL"); if (id_for_tag != tp->u.s.tag) - free (CONST_CAST(char *, id_for_tag)); + free (CONST_CAST (char *, id_for_tag)); } else if (!has_length && tp->kind == TYPE_PARAM_STRUCT) { @@ -4789,7 +4789,7 @@ write_typed_alloc_def (outf_p f, oprintf (f, ", n"); oprintf (f, " MEM_STAT_INFO)))\n"); if (type_name_as_id != type_name) - free (CONST_CAST(char *, type_name_as_id)); + free (CONST_CAST (char *, type_name_as_id)); } /* Writes a typed allocator definition into output F for a struct or @@ -4856,7 +4856,7 @@ write_typed_alloc_defns (outf_p f, relevant to plugin input files. */ if (nb_plugin_files > 0) { - struct fileloc* filoc = type_fileloc(s); + struct fileloc* filoc = type_fileloc (s); if (!filoc || !filoc->file->inpisplugin) continue; }; @@ -5470,7 +5470,7 @@ main (int argc, char **argv) we can see them. We should initialize them before calling read_input_list. */ #define POS_HERE(Call) do { pos.file = this_file; pos.line = __LINE__; \ - Call;} while(0) + Call;} while (0) POS_HERE (do_scalar_typedef ("CUMULATIVE_ARGS", &pos)); POS_HERE (do_scalar_typedef ("REAL_VALUE_TYPE", &pos)); POS_HERE (do_scalar_typedef ("FIXED_VALUE_TYPE", &pos)); |

