diff options
| author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-20 20:41:49 +0000 |
|---|---|---|
| committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-20 20:41:49 +0000 |
| commit | 10b651251fcb5e44502b9b6196034c6ebbbd5b6f (patch) | |
| tree | 93b10e46ccc7b008bb3c649c025846cc662482ca /gcc/stmt.c | |
| parent | 9807cfe1f6de4f0f568edfa633b2830dbcd9eda2 (diff) | |
| download | ppe42-gcc-10b651251fcb5e44502b9b6196034c6ebbbd5b6f.tar.gz ppe42-gcc-10b651251fcb5e44502b9b6196034c6ebbbd5b6f.zip | |
* stmt.c (expand_decl): Set mode, alignment, and sizes for CONST_DECL.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42360 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/stmt.c')
| -rw-r--r-- | gcc/stmt.c | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c index 433908aa024..c20a99e6ad2 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -3749,14 +3749,24 @@ expand_decl (decl) type = TREE_TYPE (decl); - /* Only automatic variables need any expansion done. - Static and external variables, and external functions, - will be handled by `assemble_variable' (called from finish_decl). - TYPE_DECL and CONST_DECL require nothing. - PARM_DECLs are handled in `assign_parms'. */ + /* For a CONST_DECL, set mode, alignment, and sizes from those of the + type in case this node is used in a reference. */ + if (TREE_CODE (decl) == CONST_DECL) + { + DECL_MODE (decl) = TYPE_MODE (type); + DECL_ALIGN (decl) = TYPE_ALIGN (type); + DECL_SIZE (decl) = TYPE_SIZE (type); + DECL_SIZE_UNIT (decl) = TYPE_SIZE_UNIT (type); + return; + } + /* Otherwise, only automatic variables need any expansion done. Static and + external variables, and external functions, will be handled by + `assemble_variable' (called from finish_decl). TYPE_DECL requires + nothing. PARM_DECLs are handled in `assign_parms'. */ if (TREE_CODE (decl) != VAR_DECL) return; + if (TREE_STATIC (decl) || DECL_EXTERNAL (decl)) return; |

