Deleted Added
full compact
print-tree.c (259661) print-tree.c (260014)
1/* Prints out tree in human readable form - GCC
2 Copyright (C) 1990, 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free

--- 288 unchanged lines hidden (view full) ---

297 if (TREE_PRIVATE (node))
298 fputs (" private", file);
299 if (TREE_PROTECTED (node))
300 fputs (" protected", file);
301 if (TREE_STATIC (node))
302 fputs (" static", file);
303 if (TREE_DEPRECATED (node))
304 fputs (" deprecated", file);
1/* Prints out tree in human readable form - GCC
2 Copyright (C) 1990, 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free

--- 288 unchanged lines hidden (view full) ---

297 if (TREE_PRIVATE (node))
298 fputs (" private", file);
299 if (TREE_PROTECTED (node))
300 fputs (" protected", file);
301 if (TREE_STATIC (node))
302 fputs (" static", file);
303 if (TREE_DEPRECATED (node))
304 fputs (" deprecated", file);
305 /* APPLE LOCAL begin "unavailable" attribute (Radar 2809697) */
306 if (TREE_UNAVAILABLE (node))
307 fputs (" unavailable", file);
308 /* APPLE LOCAL end "unavailable" attribute (Radar 2809697) */
305 if (TREE_VISITED (node))
306 fputs (" visited", file);
307 if (TREE_LANG_FLAG_0 (node))
308 fputs (" tree_0", file);
309 if (TREE_LANG_FLAG_1 (node))
310 fputs (" tree_1", file);
311 if (TREE_LANG_FLAG_2 (node))
312 fputs (" tree_2", file);

--- 562 unchanged lines hidden ---
309 if (TREE_VISITED (node))
310 fputs (" visited", file);
311 if (TREE_LANG_FLAG_0 (node))
312 fputs (" tree_0", file);
313 if (TREE_LANG_FLAG_1 (node))
314 fputs (" tree_1", file);
315 if (TREE_LANG_FLAG_2 (node))
316 fputs (" tree_2", file);

--- 562 unchanged lines hidden ---