aboutsummaryrefslogtreecommitdiff
path: root/gcc/combine.c
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-10-31 17:36:58 +0000
committerJeff Law <law@gcc.gnu.org>1999-10-31 10:36:58 -0700
commit31ec4e5e8a03e5d6cf5bf71fc14bb90eab0db3b0 (patch)
tree02de0bdba1db1fe8dc169d396c5a69c55a9eeecc /gcc/combine.c
parent6086005548f1a0bb58fe426794e98f0128cb9bec (diff)
downloadgcc-31ec4e5e8a03e5d6cf5bf71fc14bb90eab0db3b0.zip
gcc-31ec4e5e8a03e5d6cf5bf71fc14bb90eab0db3b0.tar.gz
gcc-31ec4e5e8a03e5d6cf5bf71fc14bb90eab0db3b0.tar.bz2
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
Diffstat (limited to 'gcc/combine.c')
-rw-r--r--gcc/combine.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/combine.c b/gcc/combine.c
index f3dcc96..111088e 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;