diff options
Diffstat (limited to 'gcc/tree-dump.c')
-rw-r--r-- | gcc/tree-dump.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-dump.c b/gcc/tree-dump.c index 6f958cf90fd..c00cc5fe2eb 100644 --- a/gcc/tree-dump.c +++ b/gcc/tree-dump.c @@ -1,5 +1,5 @@ /* Tree-dumping functionality for intermediate representation. - Copyright (C) 1999, 2000, 2002, 2003 Free Software Foundation, Inc. + Copyright (C) 1999, 2000, 2002, 2003, 2004 Free Software Foundation, Inc. Written by Mark Mitchell <mark@codesourcery.com> This file is part of GCC. @@ -346,7 +346,7 @@ dequeue_and_dump (dump_info_p di) else if (code_class == 't') { /* All types have qualifiers. */ - int quals = (*lang_hooks.tree_dump.type_quals) (t); + int quals = lang_hooks.tree_dump.type_quals (t); if (quals != TYPE_UNQUALIFIED) { @@ -377,7 +377,7 @@ dequeue_and_dump (dump_info_p di) /* Give the language-specific code a chance to print something. If it's completely taken care of things, don't bother printing anything more ourselves. */ - if ((*lang_hooks.tree_dump.dump_tree) (di, t)) + if (lang_hooks.tree_dump.dump_tree (di, t)) goto done; /* Now handle the various kinds of nodes. */ |