Commit 587f922a by Richard Henderson Committed by Richard Henderson

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
parent 89f355bd
2001-07-28 Richard Henderson <rth@redhat.com>
* flow.c (life_analysis): Elide PROP_ALLOW_CFG_CHANGES if
not optimizing.
2001-07-28 Golubev I. N. <gin@mo.msk.ru>
* config/i386/sco5.h (DWARF2_DEBUGGING_INFO): Define.
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment