diff options
author | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-13 12:15:47 +0000 |
---|---|---|
committer | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-13 12:15:47 +0000 |
commit | 5d1c1f55d54adb95d9fa3bdfa28170d87c830d9c (patch) | |
tree | 2d7285885f7ee30b8a9be28547a4cc24eea954fd /gcc/cfgexpand.c | |
parent | 436161c686eb154b799b271c6ce15d50087fb358 (diff) | |
download | gcc-5d1c1f55d54adb95d9fa3bdfa28170d87c830d9c.tar.gz |
* cfgexpand.c (expand_used_vars): Allocate space for partitions based
on PARM_DECLs or RESULT_DECLs only if they are ignored for debug info
or if optimization is enabled.
* tree-ssa-coalesce.c (coalesce_ssa_name): If optimization is disabled,
require that all the names based on a PARM_DECL or a RESULT_DECL that
isn't ignored for debug info be coalesced.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@204742 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgexpand.c')
-rw-r--r-- | gcc/cfgexpand.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index 4e622c0b9a0..de7a7b3fb0b 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -1610,9 +1610,15 @@ expand_used_vars (void) replace_ssa_name_symbol (var, (tree) *slot); } + /* Always allocate space for partitions based on VAR_DECLs. But for + those based on PARM_DECLs or RESULT_DECLs and which matter for the + debug info, there is no need to do so if optimization is disabled + because all the SSA_NAMEs based on these DECLs have been coalesced + into a single partition, which is thus assigned the canonical RTL + location of the DECLs. */ if (TREE_CODE (SSA_NAME_VAR (var)) == VAR_DECL) expand_one_var (var, true, true); - else + else if (DECL_IGNORED_P (SSA_NAME_VAR (var)) || optimize) { /* This is a PARM_DECL or RESULT_DECL. For those partitions that contain the default def (representing the parm or result itself) |