diff options
author | Richard Henderson <rth@redhat.com> | 2001-07-28 23:59:47 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-07-28 23:59:47 -0700 |
commit | 587f922afbc84d1773601912f56334fb7505c545 (patch) | |
tree | f3471305bd360f8066860f5417d942a84a6d68f4 /gcc/flow.c | |
parent | 89f355bdb3dd1f4bc02a70fe75b4fc6f74b42a4d (diff) | |
download | gcc-587f922afbc84d1773601912f56334fb7505c545.zip gcc-587f922afbc84d1773601912f56334fb7505c545.tar.gz gcc-587f922afbc84d1773601912f56334fb7505c545.tar.bz2 |
flow.c (life_analysis): Elide PROP_ALLOW_CFG_CHANGES if not optimizing.
* flow.c (life_analysis): Elide PROP_ALLOW_CFG_CHANGES if
not optimizing.
From-SVN: r44451
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4115,7 +4115,7 @@ life_analysis (f, file, flags) #endif if (! optimize) - flags &= ~(PROP_LOG_LINKS | PROP_AUTOINC); + flags &= ~(PROP_LOG_LINKS | PROP_AUTOINC | PROP_ALLOW_CFG_CHANGES); /* The post-reload life analysis have (on a global basis) the same registers live as was computed by reload itself. elimination |