diff options
author | bergner <bergner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-04-09 13:42:43 +0000 |
---|---|---|
committer | bergner <bergner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-04-09 13:42:43 +0000 |
commit | eeadedeb0347a87a8c61d4eca4a42123f0db09cd (patch) | |
tree | b2e82f8ef6936626f389125f5ec533d3a641469c /gcc/explow.c | |
parent | cfebfcf50287970b596a52704ef8bf2ed31efad6 (diff) | |
download | gcc-eeadedeb0347a87a8c61d4eca4a42123f0db09cd.tar.gz |
PR middle-end/PR28690
* explow.c (break_out_memory_refs): Use simplify_gen_binary rather
than gen_rtx_fmt_ee to perform more canonicalizations.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@134139 138bc75d-0d04-0410-961f-82ee72b054a4
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 612fb1bb5db..e92da9f86ff 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; |