diff options
Diffstat (limited to 'gcc/tree-pretty-print.c')
-rw-r--r-- | gcc/tree-pretty-print.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c index 3b60b25..b64571db 100644 --- a/gcc/tree-pretty-print.c +++ b/gcc/tree-pretty-print.c @@ -1,5 +1,5 @@ /* Pretty formatting of GENERIC trees in C syntax. - Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 + Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. Adapted from c-pretty-print.c by Diego Novillo <dnovillo@redhat.com> @@ -3112,20 +3112,10 @@ dump_implicit_edges (pretty_printer *buffer, basic_block bb, int indent, { INDENT (indent); - if ((flags & TDF_LINENO) -#ifdef USE_MAPPED_LOCATION - && e->goto_locus != UNKNOWN_LOCATION -#else - && e->goto_locus -#endif - ) + if ((flags & TDF_LINENO) && e->goto_locus != UNKNOWN_LOCATION) { expanded_location goto_xloc; -#ifdef USE_MAPPED_LOCATION goto_xloc = expand_location (e->goto_locus); -#else - goto_xloc = *e->goto_locus; -#endif pp_character (buffer, '['); if (goto_xloc.file) { |