comparison gcc/tree-streamer.c @ 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 /* Miscellaneous utilities for tree streaming. Things that are used 1 /* Miscellaneous utilities for tree streaming. Things that are used
2 in both input and output are here. 2 in both input and output are here.
3 3
4 Copyright (C) 2011-2017 Free Software Foundation, Inc. 4 Copyright (C) 2011-2018 Free Software Foundation, Inc.
5 Contributed by Diego Novillo <dnovillo@google.com> 5 Contributed by Diego Novillo <dnovillo@google.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 it under 9 GCC is free software; you can redistribute it and/or modify it under
53 explicitly ignored by the streamer routines. */ 53 explicitly ignored by the streamer routines. */
54 handled_p[TS_BASE] = true; 54 handled_p[TS_BASE] = true;
55 handled_p[TS_TYPED] = true; 55 handled_p[TS_TYPED] = true;
56 handled_p[TS_COMMON] = true; 56 handled_p[TS_COMMON] = true;
57 handled_p[TS_INT_CST] = true; 57 handled_p[TS_INT_CST] = true;
58 handled_p[TS_POLY_INT_CST] = true;
58 handled_p[TS_REAL_CST] = true; 59 handled_p[TS_REAL_CST] = true;
59 handled_p[TS_FIXED_CST] = true; 60 handled_p[TS_FIXED_CST] = true;
60 handled_p[TS_VECTOR] = true; 61 handled_p[TS_VECTOR] = true;
61 handled_p[TS_STRING] = true; 62 handled_p[TS_STRING] = true;
62 handled_p[TS_COMPLEX] = true; 63 handled_p[TS_COMPLEX] = true;
309 case FIELD_DECL: 310 case FIELD_DECL:
310 case FIXED_POINT_TYPE: 311 case FIXED_POINT_TYPE:
311 case IDENTIFIER_NODE: 312 case IDENTIFIER_NODE:
312 case INTEGER_CST: 313 case INTEGER_CST:
313 case INTEGER_TYPE: 314 case INTEGER_TYPE:
314 case POINTER_BOUNDS_TYPE:
315 case REAL_TYPE: 315 case REAL_TYPE:
316 case TREE_LIST: 316 case TREE_LIST:
317 case VOID_CST: 317 case VOID_CST:
318 case VOID_TYPE: 318 case VOID_TYPE:
319 /* No recursive trees. */ 319 /* No recursive trees. */