From 5538e30f194c64edaae424688e28a2064902fa1a Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Sun, 18 Jun 2000 13:09:26 +0000 Subject: [PATCH] * c-common.c (add_c_tree_codes): Fix definition for traditional C. From-SVN: r34588 --- gcc/ChangeLog | 4 ++++ gcc/c-common.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f23cfe9a837..855bd6438c6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-06-18 Kaveh R. Ghazi + + * c-common.c (add_c_tree_codes): Fix definition for traditional C. + 2000-06-17 Michael Meissner * gcc.c (do_spec_1, '%v3' case): Do not abort if patch level is diff --git a/gcc/c-common.c b/gcc/c-common.c index f74cad28ab8..2f25a6765f1 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -3999,7 +3999,7 @@ static const char *c_tree_code_name[] = { tree codes. */ void -add_c_tree_codes (void) +add_c_tree_codes () { memcpy (tree_code_type + (int) LAST_AND_UNUSED_TREE_CODE, c_tree_code_type, -- 2.30.2