diff options
author | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-29 12:02:58 +0000 |
---|---|---|
committer | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-29 12:02:58 +0000 |
commit | 240171a941b66acc4df3c22ce389b7b611d5c571 (patch) | |
tree | 3c0a6e6bec4f0cd618dd080767811d004989e3f9 /gcc/cp/dump.c | |
parent | fb050357d83fc28162c8dd05e4ef7e8cd96bb374 (diff) | |
download | gcc-240171a941b66acc4df3c22ce389b7b611d5c571.tar.gz |
* cp-tree.h (language_to_string): Adjust declaration.
* dump.c (cp_dump_tree): Adjust usage.
* error.c (dump_char): Use output_formatted_scalar. Tidy.
(parm_to_string): Lose unused parameter. Tidy.
(expr_to_string): Likewise.
(code_to_string): Likewise.
(language_to_string): Likewise.
(op_to_string): Likewise.
(assop_to_string): Likewise.
(digit_buffer): Remove.
(dump_type): Format builtin vector type as __vector__.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68668 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/dump.c')
-rw-r--r-- | gcc/cp/dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/dump.c b/gcc/cp/dump.c index 7f73a3085e3..c8091892cb7 100644 --- a/gcc/cp/dump.c +++ b/gcc/cp/dump.c @@ -214,7 +214,7 @@ cp_dump_tree (void* dump_info, tree t) if (DECL_P (t)) { if (DECL_LANG_SPECIFIC (t) && DECL_LANGUAGE (t) != lang_cplusplus) - dump_string (di, language_to_string (DECL_LANGUAGE (t), 0)); + dump_string (di, language_to_string (DECL_LANGUAGE (t))); } switch (code) |