diff options
author | Vladimir Makarov <vmakarov@redhat.com> | 2014-11-13 05:07:52 +0000 |
---|---|---|
committer | Vladimir Makarov <vmakarov@gcc.gnu.org> | 2014-11-13 05:07:52 +0000 |
commit | 0a134b2aa3328e3707774661c7b727a8270758c3 (patch) | |
tree | 1e8862a2b294155b2089321c3ead44b4030f5789 /gcc/lra.c | |
parent | d9cf932c33070383b9e4f9917ecee76a28e762aa (diff) | |
download | gcc-0a134b2aa3328e3707774661c7b727a8270758c3.zip gcc-0a134b2aa3328e3707774661c7b727a8270758c3.tar.gz gcc-0a134b2aa3328e3707774661c7b727a8270758c3.tar.bz2 |
lra.c (lra): Switch off rematerialization pass.
2014-11-13 Vladimir Makarov <vmakarov@redhat.com>
* lra.c (lra): Switch off rematerialization pass.
From-SVN: r217459
Diffstat (limited to 'gcc/lra.c')
-rw-r--r-- | gcc/lra.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2349,7 +2349,7 @@ lra (FILE *f) } /* Now we know what pseudos should be spilled. Try to rematerialize them first. */ - if (lra_remat ()) + if (0 && lra_remat ()) { /* We need full live info -- see the comment above. */ lra_create_live_ranges (lra_reg_spill_p); |