comparison gcc/fortran/match.h @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 /* All matcher functions. 1 /* All matcher functions.
2 Copyright (C) 2003-2017 Free Software Foundation, Inc. 2 Copyright (C) 2003-2018 Free Software Foundation, Inc.
3 Contributed by Steven Bosscher 3 Contributed by Steven Bosscher
4 4
5 This file is part of GCC. 5 This file is part of GCC.
6 6
7 GCC is free software; you can redistribute it and/or modify it under 7 GCC is free software; you can redistribute it and/or modify it under
72 match gfc_match_elseif (void); 72 match gfc_match_elseif (void);
73 match gfc_match_event_post (void); 73 match gfc_match_event_post (void);
74 match gfc_match_event_wait (void); 74 match gfc_match_event_wait (void);
75 match gfc_match_critical (void); 75 match gfc_match_critical (void);
76 match gfc_match_fail_image (void); 76 match gfc_match_fail_image (void);
77 match gfc_match_change_team (void);
78 match gfc_match_end_team (void);
79 match gfc_match_form_team (void);
80 match gfc_match_sync_team (void);
77 match gfc_match_block (void); 81 match gfc_match_block (void);
78 match gfc_match_associate (void); 82 match gfc_match_associate (void);
79 match gfc_match_do (void); 83 match gfc_match_do (void);
80 match gfc_match_cycle (void); 84 match gfc_match_cycle (void);
81 match gfc_match_exit (void); 85 match gfc_match_exit (void);
228 match gfc_match_type (gfc_statement *); 232 match gfc_match_type (gfc_statement *);
229 233
230 match gfc_match_implicit_none (void); 234 match gfc_match_implicit_none (void);
231 match gfc_match_implicit (void); 235 match gfc_match_implicit (void);
232 236
233 void gfc_set_constant_character_len (int, gfc_expr *, int); 237 void gfc_set_constant_character_len (gfc_charlen_t, gfc_expr *,
238 gfc_charlen_t);
234 239
235 /* Matchers for attribute declarations. */ 240 /* Matchers for attribute declarations. */
236 match gfc_match_allocatable (void); 241 match gfc_match_allocatable (void);
237 match gfc_match_asynchronous (void); 242 match gfc_match_asynchronous (void);
238 match gfc_match_automatic (void); 243 match gfc_match_automatic (void);
239 match gfc_match_codimension (void); 244 match gfc_match_codimension (void);
240 match gfc_match_contiguous (void); 245 match gfc_match_contiguous (void);
241 match gfc_match_dimension (void); 246 match gfc_match_dimension (void);
242 match gfc_match_external (void); 247 match gfc_match_external (void);
243 match gfc_match_gcc_attributes (void); 248 match gfc_match_gcc_attributes (void);
249 match gfc_match_gcc_unroll (void);
244 match gfc_match_import (void); 250 match gfc_match_import (void);
245 match gfc_match_intent (void); 251 match gfc_match_intent (void);
246 match gfc_match_intrinsic (void); 252 match gfc_match_intrinsic (void);
247 match gfc_match_optional (void); 253 match gfc_match_optional (void);
248 match gfc_match_parameter (void); 254 match gfc_match_parameter (void);