Commit 31ec4e5e by Jeffrey A Law Committed by Jeff Law

combine.c (combine_simplify_rtx): Renamed from simplify_rtx.

        * combine.c (combine_simplify_rtx): Renamed from simplify_rtx.  All
        references/callers changed.

From-SVN: r30292
parent 60860055
Sun Oct 31 01:53:30 1999 Jeffrey A Law (law@cygnus.com) Sun Oct 31 01:53:30 1999 Jeffrey A Law (law@cygnus.com)
* combine.c (combine_simplify_rtx): Renamed from simplify_rtx. All
references/callers changed.
* mn10200.c (mn10200_va_arg): Force the return value into a * mn10200.c (mn10200_va_arg): Force the return value into a
register. register.
......
...@@ -362,7 +362,7 @@ static rtx try_combine PROTO((rtx, rtx, rtx)); ...@@ -362,7 +362,7 @@ static rtx try_combine PROTO((rtx, rtx, rtx));
static void undo_all PROTO((void)); static void undo_all PROTO((void));
static rtx *find_split_point PROTO((rtx *, rtx)); static rtx *find_split_point PROTO((rtx *, rtx));
static rtx subst PROTO((rtx, rtx, rtx, int, int)); static rtx subst PROTO((rtx, rtx, rtx, int, int));
static rtx simplify_rtx PROTO((rtx, enum machine_mode, int, int)); static rtx combine_simplify_rtx PROTO((rtx, enum machine_mode, int, int));
static rtx simplify_if_then_else PROTO((rtx)); static rtx simplify_if_then_else PROTO((rtx));
static rtx simplify_set PROTO((rtx)); static rtx simplify_set PROTO((rtx));
static rtx simplify_logical PROTO((rtx, int)); static rtx simplify_logical PROTO((rtx, int));
...@@ -3248,7 +3248,7 @@ subst (x, from, to, in_dest, unique_copy) ...@@ -3248,7 +3248,7 @@ subst (x, from, to, in_dest, unique_copy)
/* If X is sufficiently simple, don't bother trying to do anything /* If X is sufficiently simple, don't bother trying to do anything
with it. */ with it. */
if (code != CONST_INT && code != REG && code != CLOBBER) if (code != CONST_INT && code != REG && code != CLOBBER)
x = simplify_rtx (x, op0_mode, i == 3, in_dest); x = combine_simplify_rtx (x, op0_mode, i == 3, in_dest);
if (GET_CODE (x) == code) if (GET_CODE (x) == code)
break; break;
...@@ -3272,7 +3272,7 @@ subst (x, from, to, in_dest, unique_copy) ...@@ -3272,7 +3272,7 @@ subst (x, from, to, in_dest, unique_copy)
X is returned; IN_DEST is nonzero if we are inside a SET_DEST. */ X is returned; IN_DEST is nonzero if we are inside a SET_DEST. */
static rtx static rtx
simplify_rtx (x, op0_mode, last, in_dest) combine_simplify_rtx (x, op0_mode, last, in_dest)
rtx x; rtx x;
enum machine_mode op0_mode; enum machine_mode op0_mode;
int last; int last;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment