diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-04-16 22:14:41 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-04-16 16:14:41 -0600 |
commit | 70fec6509cd30ae31ae1d216dac8a8d6ae67bc06 (patch) | |
tree | f8915c56f0a030a1de8d6fae40f2329a9ce0818b /gcc | |
parent | 1ac4f79956d6a082506ad3eb5dbcfd226517b55d (diff) | |
download | gcc-70fec6509cd30ae31ae1d216dac8a8d6ae67bc06.zip gcc-70fec6509cd30ae31ae1d216dac8a8d6ae67bc06.tar.gz gcc-70fec6509cd30ae31ae1d216dac8a8d6ae67bc06.tar.bz2 |
alias.c (record_set): Add prototype.
* alias.c (record_set): Add prototype.
(find_base_term, base_alias_check): Likewise.
From-SVN: r19246
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/alias.c | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 183c402..efd2113 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ Thu Apr 16 22:41:02 1998 Jeffrey A Law (law@cygnus.com) + * alias.c (record_set): Add prototype. + (find_base_term, base_alias_check): Likewise. + * function.c (assign_outer_stack_local): Make static and add prototype. * haifa-sched.c (build_control_flow): Accept raw data as inputs diff --git a/gcc/alias.c b/gcc/alias.c index 9f7537d..ffd20ec 100644 --- a/gcc/alias.c +++ b/gcc/alias.c @@ -32,6 +32,9 @@ static int rtx_equal_for_memref_p PROTO((rtx, rtx)); static rtx find_symbolic_term PROTO((rtx)); static int memrefs_conflict_p PROTO((int, rtx, int, rtx, HOST_WIDE_INT)); +static void record_set PROTO((rtx, rtx)); +static rtx find_base_term PROTO((rtx)); +static int base_alias_check PROTO((rtx, rtx)); /* Set up all info needed to perform alias analysis on memory references. */ |