diff options
author | Peter Bergner <bergner@vnet.ibm.com> | 2008-04-09 08:42:43 -0500 |
---|---|---|
committer | Peter Bergner <bergner@gcc.gnu.org> | 2008-04-09 08:42:43 -0500 |
commit | 3a3a1fe1f8ed06d2ea69734c8f22a874eeb80b36 (patch) | |
tree | b2e82f8ef6936626f389125f5ec533d3a641469c /gcc/explow.c | |
parent | f5be9e6c9241b3d5473c211069b2ff8f16378e5d (diff) | |
download | gcc-3a3a1fe1f8ed06d2ea69734c8f22a874eeb80b36.zip gcc-3a3a1fe1f8ed06d2ea69734c8f22a874eeb80b36.tar.gz gcc-3a3a1fe1f8ed06d2ea69734c8f22a874eeb80b36.tar.bz2 |
PR middle-end/PR28690
PR middle-end/PR28690
* explow.c (break_out_memory_refs): Use simplify_gen_binary rather
than gen_rtx_fmt_ee to perform more canonicalizations.
From-SVN: r134139
Diffstat (limited to 'gcc/explow.c')
-rw-r--r-- | gcc/explow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/explow.c b/gcc/explow.c index 612fb1b..e92da9f 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -305,7 +305,7 @@ break_out_memory_refs (rtx x) rtx op1 = break_out_memory_refs (XEXP (x, 1)); if (op0 != XEXP (x, 0) || op1 != XEXP (x, 1)) - x = gen_rtx_fmt_ee (GET_CODE (x), Pmode, op0, op1); + x = simplify_gen_binary (GET_CODE (x), Pmode, op0, op1); } return x; |