diff options
author | Vladimir Makarov <vmakarov@redhat.com> | 2014-11-16 05:00:30 +0000 |
---|---|---|
committer | Vladimir Makarov <vmakarov@gcc.gnu.org> | 2014-11-16 05:00:30 +0000 |
commit | f607c5c4b7720bdc62998ebb2b64d4d093690d5c (patch) | |
tree | e7ab8e4ebe6b2ee4340da36b42c99a9bc2b3cdd0 /gcc/lra.c | |
parent | cb9365ac6afa908abd6c3ddf74572d81831700c9 (diff) | |
download | gcc-f607c5c4b7720bdc62998ebb2b64d4d093690d5c.zip gcc-f607c5c4b7720bdc62998ebb2b64d4d093690d5c.tar.gz gcc-f607c5c4b7720bdc62998ebb2b64d4d093690d5c.tar.bz2 |
lra-remat.c (cand_transf_func): Process regno for rematerialization too.
2014-11-15 Vladimir Makarov <vmakarov@redhat.com>
* lra-remat.c (cand_transf_func): Process regno for
rematerialization too.
* lra.c (lra): Switch on rematerialization pass.
From-SVN: r217624
Diffstat (limited to 'gcc/lra.c')
-rw-r--r-- | gcc/lra.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2354,7 +2354,7 @@ lra (FILE *f) break; /* Now we know what pseudos should be spilled. Try to rematerialize them first. */ - if (0&&lra_remat ()) + if (lra_remat ()) { /* We need full live info -- see the comment above. */ lra_create_live_ranges (lra_reg_spill_p, true); |