summaryrefslogtreecommitdiff
path: root/gcc/combine.c
diff options
context:
space:
mode:
authorsegher <segher@138bc75d-0d04-0410-961f-82ee72b054a4>2015-05-13 11:26:45 +0000
committersegher <segher@138bc75d-0d04-0410-961f-82ee72b054a4>2015-05-13 11:26:45 +0000
commitbbaa616a63bde70a78d1b0c7f0006f5ed09de1c9 (patch)
treec49518f2a74752137cad44dc0db90a02c2b87de8 /gcc/combine.c
parent4cf45a82536f10a635642234c09e8088e078bca0 (diff)
downloadgcc-bbaa616a63bde70a78d1b0c7f0006f5ed09de1c9.tar.gz
* combine.c (simplify_set): When generating a CC set, if the
source already is in the correct mode, do not wrap it in a compare. Simplify the rest of that code. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@223146 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/combine.c')
-rw-r--r--gcc/combine.c16
1 files changed, 6 insertions, 10 deletions
diff --git a/gcc/combine.c b/gcc/combine.c
index 1c1a74fdaa6..5bb49cbc538 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -6705,20 +6705,16 @@ simplify_set (rtx x)
if (other_changed)
undobuf.other_insn = other_insn;
- /* Otherwise, if we didn't previously have a COMPARE in the
- correct mode, we need one. */
- if (GET_CODE (src) != COMPARE || GET_MODE (src) != compare_mode)
- {
- SUBST (SET_SRC (x), gen_rtx_COMPARE (compare_mode, op0, op1));
- src = SET_SRC (x);
- }
- else if (GET_MODE (op0) == compare_mode && op1 == const0_rtx)
+ /* Don't generate a compare of a CC with 0, just use that CC. */
+ if (GET_MODE (op0) == compare_mode && op1 == const0_rtx)
{
SUBST (SET_SRC (x), op0);
src = SET_SRC (x);
}
- /* Otherwise, update the COMPARE if needed. */
- else if (XEXP (src, 0) != op0 || XEXP (src, 1) != op1)
+ /* Otherwise, if we didn't previously have the same COMPARE we
+ want, create it from scratch. */
+ else if (GET_CODE (src) != COMPARE || GET_MODE (src) != compare_mode
+ || XEXP (src, 0) != op0 || XEXP (src, 1) != op1)
{
SUBST (SET_SRC (x), gen_rtx_COMPARE (compare_mode, op0, op1));
src = SET_SRC (x);