diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2000-03-09 09:21:46 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2000-03-09 09:21:46 +0000 |
commit | ce5adf112e117fcd61beb4582c1d8e6a24065b25 (patch) | |
tree | 31f5b0e5dc2259f95abab85fb366f1095a9be227 /contrib/gcc/c-decl.c | |
parent | cbab3205286065bef3f77788d973d62378b6d6f0 (diff) |
Bring in bug fixes from the GCC anoncvs server's "gcc-2_95-branch"
branch as of March 7th, 2000.
Notes
Notes:
svn path=/vendor/gcc/dist/; revision=57844
Diffstat (limited to 'contrib/gcc/c-decl.c')
-rw-r--r-- | contrib/gcc/c-decl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/gcc/c-decl.c b/contrib/gcc/c-decl.c index a232217bc0a5..8844988fa8f3 100644 --- a/contrib/gcc/c-decl.c +++ b/contrib/gcc/c-decl.c @@ -1951,6 +1951,7 @@ duplicate_decls (newdecl, olddecl, different_binding_level) { /* Since the type is OLDDECL's, make OLDDECL's size go with. */ DECL_SIZE (newdecl) = DECL_SIZE (olddecl); + DECL_MODE (newdecl) = DECL_MODE (olddecl); if (TREE_CODE (olddecl) != FUNCTION_DECL) if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl)) DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl); |