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 7eea529..e4c6b07 100644 --- a/gcc/tree-pretty-print.c +++ b/gcc/tree-pretty-print.c @@ -52,8 +52,8 @@ static void dump_generic_bb_buff (pretty_printer *, basic_block, int, int); #define PRINT_FUNCTION_NAME(NODE) pp_printf \ (buffer, "%s", TREE_CODE (NODE) == NOP_EXPR ? \ - (*lang_hooks.decl_printable_name) (TREE_OPERAND (NODE, 0), 1) : \ - (*lang_hooks.decl_printable_name) (NODE, 1)) + lang_hooks.decl_printable_name (TREE_OPERAND (NODE, 0), 1) : \ + lang_hooks.decl_printable_name (NODE, 1)) #define MASK_POINTER(P) ((unsigned)((unsigned long)(P) & 0xffff)) |