From 0116c495d2e7a9cefc02d267c46306e63da71606 Mon Sep 17 00:00:00 2001 From: law <law@138bc75d-0d04-0410-961f-82ee72b054a4> Date: Sun, 31 Oct 1999 17:36:58 +0000 Subject: [PATCH] * combine.c (combine_simplify_rtx): Renamed from simplify_rtx. All references/callers changed. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30292 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 3 +++ gcc/combine.c | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6745e72c1a2e..0d4e023ec609 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 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 register. diff --git a/gcc/combine.c b/gcc/combine.c index f3dcc96c202c..111088ecfa63 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -362,7 +362,7 @@ static rtx try_combine PROTO((rtx, rtx, rtx)); static void undo_all PROTO((void)); static rtx *find_split_point PROTO((rtx *, rtx)); 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_set PROTO((rtx)); static rtx simplify_logical PROTO((rtx, int)); @@ -3248,7 +3248,7 @@ subst (x, from, to, in_dest, unique_copy) /* If X is sufficiently simple, don't bother trying to do anything with it. */ 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) break; @@ -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. */ static rtx -simplify_rtx (x, op0_mode, last, in_dest) +combine_simplify_rtx (x, op0_mode, last, in_dest) rtx x; enum machine_mode op0_mode; int last; -- GitLab