comparison gcc/gengtype.h @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 /* Process source files and output type information. 1 /* Process source files and output type information.
2 Copyright (C) 2002-2018 Free Software Foundation, Inc. 2 Copyright (C) 2002-2020 Free Software Foundation, Inc.
3 3
4 This file is part of GCC. 4 This file is part of GCC.
5 5
6 GCC is free software; you can redistribute it and/or modify it under 6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free 7 the terms of the GNU General Public License as published by the Free
201 /* Create a nested option. */ 201 /* Create a nested option. */
202 options_p create_nested_option (options_p next, const char* name, 202 options_p create_nested_option (options_p next, const char* name,
203 struct nested_ptr_data* info); 203 struct nested_ptr_data* info);
204 204
205 /* Create a nested pointer option. */ 205 /* Create a nested pointer option. */
206 options_p create_nested_ptr_option (options_p, type_p t, 206 options_p create_nested_ptr_option (options_p next, type_p t,
207 const char *from, const char *to); 207 const char *to, const char *from);
208 208
209 /* A name and a type. */ 209 /* A name and a type. */
210 struct pair { 210 struct pair {
211 pair_p next; /* The next pair in the linked list. */ 211 pair_p next; /* The next pair in the linked list. */
212 const char *name; /* The defined name. */ 212 const char *name; /* The defined name. */