diff options
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 196595c..6cda6bb 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1575,7 +1575,7 @@ default_tree_printer (pretty_printer * pp, text_info *text) { case 'D': t = va_arg (*text->args_ptr, tree); - if (DECL_DEBUG_EXPR (t) && DECL_DEBUG_EXPR_IS_FROM (t)) + if (DECL_DEBUG_EXPR_IS_FROM (t) && DECL_DEBUG_EXPR (t)) t = DECL_DEBUG_EXPR (t); break; |