comparison gcc/cp/ptree.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 /* Prints out trees in human readable form. 1 /* Prints out trees in human readable form.
2 Copyright (C) 1992-2017 Free Software Foundation, Inc. 2 Copyright (C) 1992-2018 Free Software Foundation, Inc.
3 Hacked by Michael Tiemann (tiemann@cygnus.com) 3 Hacked by Michael Tiemann (tiemann@cygnus.com)
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 7 GCC is free software; you can redistribute it and/or modify
213 case BASELINK: 213 case BASELINK:
214 print_node (file, "functions", BASELINK_FUNCTIONS (node), indent + 4); 214 print_node (file, "functions", BASELINK_FUNCTIONS (node), indent + 4);
215 print_node (file, "binfo", BASELINK_BINFO (node), indent + 4); 215 print_node (file, "binfo", BASELINK_BINFO (node), indent + 4);
216 print_node (file, "access_binfo", BASELINK_ACCESS_BINFO (node), 216 print_node (file, "access_binfo", BASELINK_ACCESS_BINFO (node),
217 indent + 4); 217 indent + 4);
218 print_node (file, "optype", BASELINK_OPTYPE (node), indent + 4);
218 break; 219 break;
219 case OVERLOAD: 220 case OVERLOAD:
220 print_node (file, "function", OVL_FUNCTION (node), indent+4); 221 print_node (file, "function", OVL_FUNCTION (node), indent+4);
221 print_node (file, "next", OVL_CHAIN (node), indent+4); 222 print_node (file, "next", OVL_CHAIN (node), indent+4);
222 break; 223 break;