diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-06-18 13:09:26 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-06-18 13:09:26 +0000 |
commit | 5538e30f194c64edaae424688e28a2064902fa1a (patch) | |
tree | c7ec62039704b66d310f461e67068c97bb2d5be1 /gcc/c-common.c | |
parent | d5600cbe61c2bea2d6097bf657a2e4f66ab4e4b7 (diff) | |
download | gcc-5538e30f194c64edaae424688e28a2064902fa1a.zip gcc-5538e30f194c64edaae424688e28a2064902fa1a.tar.gz gcc-5538e30f194c64edaae424688e28a2064902fa1a.tar.bz2 |
* c-common.c (add_c_tree_codes): Fix definition for traditional C.
From-SVN: r34588
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |