diff options
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/c-common.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f23cfe9..855bd64 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-06-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * c-common.c (add_c_tree_codes): Fix definition for traditional C. + 2000-06-17 Michael Meissner <meissner@redhat.com> * 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 f74cad2..2f25a67 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, |
