diff options
Diffstat (limited to 'gcc/tree-pretty-print.c')
-rw-r--r-- | gcc/tree-pretty-print.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c index bafdc5c..2211309 100644 --- a/gcc/tree-pretty-print.c +++ b/gcc/tree-pretty-print.c @@ -225,7 +225,7 @@ dump_decl_name (pretty_printer *buffer, tree node, int flags) static void dump_function_name (pretty_printer *buffer, tree node, int flags) { - if (TREE_CODE (node) == NOP_EXPR) + if (CONVERT_EXPR_P (node)) node = TREE_OPERAND (node, 0); if (DECL_NAME (node) && (flags & TDF_ASMNAME) == 0) pp_string (buffer, lang_hooks.decl_printable_name (node, 1)); @@ -3266,7 +3266,7 @@ print_call_name (pretty_printer *buffer, tree node, int flags) case ADDR_EXPR: case INDIRECT_REF: - case NOP_EXPR: + CASE_CONVERT: op0 = TREE_OPERAND (op0, 0); goto again; |