Deleted Added
full compact
tree-dump.c (256281) tree-dump.c (259947)
1/* Tree-dumping functionality for intermediate representation.
2 Copyright (C) 1999, 2000, 2002, 2003, 2004, 2005, 2006
3 Free Software Foundation, Inc.
4 Written by Mark Mitchell <mark@codesourcery.com>
5
6This file is part of GCC.
7
8GCC is free software; you can redistribute it and/or modify it under

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

161}
162
163/* Dump pointer PTR using FIELD to identify it. */
164
165void
166dump_pointer (dump_info_p di, const char *field, void *ptr)
167{
168 dump_maybe_newline (di);
1/* Tree-dumping functionality for intermediate representation.
2 Copyright (C) 1999, 2000, 2002, 2003, 2004, 2005, 2006
3 Free Software Foundation, Inc.
4 Written by Mark Mitchell <mark@codesourcery.com>
5
6This file is part of GCC.
7
8GCC is free software; you can redistribute it and/or modify it under

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

161}
162
163/* Dump pointer PTR using FIELD to identify it. */
164
165void
166dump_pointer (dump_info_p di, const char *field, void *ptr)
167{
168 dump_maybe_newline (di);
169 fprintf (di->stream, "%-4s: %-8lx ", field, (long) ptr);
169 fprintf (di->stream, "%-4s: %-8lx ", field, (unsigned long) ptr);
170 di->column += 15;
171}
172
173/* Dump integer I using FIELD to identify it. */
174
175void
176dump_int (dump_info_p di, const char *field, int i)
177{

--- 914 unchanged lines hidden ---
170 di->column += 15;
171}
172
173/* Dump integer I using FIELD to identify it. */
174
175void
176dump_int (dump_info_p di, const char *field, int i)
177{

--- 914 unchanged lines hidden ---