comparison gcc/cp/cp-tree.def @ 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 /* This file contains the definitions and documentation for the 1 /* This file contains the definitions and documentation for the
2 additional tree codes used in the GNU C++ compiler (see tree.def 2 additional tree codes used in the GNU C++ compiler (see tree.def
3 for the standard codes). 3 for the standard codes).
4 Copyright (C) 1987-2017 Free Software Foundation, Inc. 4 Copyright (C) 1987-2018 Free Software Foundation, Inc.
5 Hacked by Michael Tiemann (tiemann@cygnus.com) 5 Hacked by Michael Tiemann (tiemann@cygnus.com)
6 6
7 This file is part of GCC. 7 This file is part of GCC.
8 8
9 GCC is free software; you can redistribute it and/or modify 9 GCC is free software; you can redistribute it and/or modify
299 /* Used to represent a `for' statement. The operands are 299 /* Used to represent a `for' statement. The operands are
300 FOR_INIT_STMT, FOR_COND, FOR_EXPR, and FOR_BODY, respectively. */ 300 FOR_INIT_STMT, FOR_COND, FOR_EXPR, and FOR_BODY, respectively. */
301 DEFTREECODE (FOR_STMT, "for_stmt", tcc_statement, 5) 301 DEFTREECODE (FOR_STMT, "for_stmt", tcc_statement, 5)
302 302
303 /* Used to represent a range-based `for' statement. The operands are 303 /* Used to represent a range-based `for' statement. The operands are
304 RANGE_FOR_DECL, RANGE_FOR_EXPR, RANGE_FOR_BODY, and RANGE_FOR_SCOPE, 304 RANGE_FOR_DECL, RANGE_FOR_EXPR, RANGE_FOR_BODY, RANGE_FOR_SCOPE,
305 respectively. Only used in templates. */ 305 RANGE_FOR_UNROLL, and RANGE_FOR_INIT_STMT, respectively. Only used in
306 DEFTREECODE (RANGE_FOR_STMT, "range_for_stmt", tcc_statement, 4) 306 templates. */
307 DEFTREECODE (RANGE_FOR_STMT, "range_for_stmt", tcc_statement, 6)
307 308
308 /* Used to represent a 'while' statement. The operands are WHILE_COND 309 /* Used to represent a 'while' statement. The operands are WHILE_COND
309 and WHILE_BODY, respectively. */ 310 and WHILE_BODY, respectively. */
310 DEFTREECODE (WHILE_STMT, "while_stmt", tcc_statement, 2) 311 DEFTREECODE (WHILE_STMT, "while_stmt", tcc_statement, 2)
311 312