This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

A prototype patch for alias.c


Hi,

Here is a patch for alias.c.


-- 
H.J. Lu (hjl@gnu.org)
---
Fri Jun 19 18:42:05 1998  H.J. Lu  (hjl@gnu.org)

	* alias.c (find_base_value): Add prototype.
	(true_dependence): Add prototype for function argument.

Index: alias.c
===================================================================
RCS file: /home/work/cvs/gnu/egcs/gcc/alias.c,v
retrieving revision 1.1.1.19
diff -u -p -r1.1.1.19 alias.c
--- alias.c	1998/06/06 03:22:11	1.1.1.19
+++ alias.c	1998/06/06 04:23:46
@@ -35,6 +35,7 @@ static int memrefs_conflict_p		PROTO((in
 static void record_set			PROTO((rtx, rtx));
 static rtx find_base_term		PROTO((rtx));
 static int base_alias_check		PROTO((rtx, rtx));
+static rtx find_base_value		PROTO((rtx));
 
 /* Set up all info needed to perform alias analysis on memory references.  */
 
@@ -865,7 +866,7 @@ true_dependence (mem, mem_mode, x, varie
      rtx mem;
      enum machine_mode mem_mode;
      rtx x;
-     int (*varies)();
+     int (*varies) PROTO((rtx));
 {
   register rtx x_addr, mem_addr;
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]