diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-29 06:59:47 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-29 06:59:47 +0000 |
commit | a8090684bf014ae64da386e7e07ffce2411df270 (patch) | |
tree | f3471305bd360f8066860f5417d942a84a6d68f4 /gcc/flow.c | |
parent | 3d095174ce19a48380405347d9c0937ec66f38c4 (diff) | |
download | gcc-a8090684bf014ae64da386e7e07ffce2411df270.tar.gz |
* flow.c (life_analysis): Elide PROP_ALLOW_CFG_CHANGES if
not optimizing.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44451 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/flow.c b/gcc/flow.c index 7cdaedc3af9..0fd58c09f6d 100644 --- a/gcc/flow.c +++ b/gcc/flow.c @@ -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 |