alias.c (fixed_scalar_and_varying_struct_p): Add "static" to function definition.
authorJeffrey A Law <law@cygnus.com>
Sat, 30 Jan 1999 17:12:54 +0000 (17:12 +0000)
committerJeff Law <law@gcc.gnu.org>
Sat, 30 Jan 1999 17:12:54 +0000 (10:12 -0700)
        * alias.c (fixed_scalar_and_varying_struct_p): Add "static" to
        function definition.
        (aliases_everything_p, write_dependence_p):Likewise.

From-SVN: r24926

gcc/ChangeLog
gcc/alias.c

index 353aa8b85b60a702a7e0b893171b3149ad92e543..b792d8dd398f7bfa6d9dae61618141e02315fc52 100644 (file)
@@ -1,5 +1,9 @@
 Sat Jan 30 08:27:23 1999  Jeffrey A Law  (law@cygnus.com)
 
+       * alias.c (fixed_scalar_and_varying_struct_p): Add "static" to
+       function definition.
+       (aliases_everything_p, write_dependence_p):Likewise.
+
        * install.texi: Fix merge lossages.
 
        * cccp.c (main): Only call setlocale (LC_MESSAGES, ...) if LC_MESSAGES
index 4897cde25c5fcfaf6fd39ceefd738d574004c30c..876b3efbae49057c4412ac97abccaf12d0e414da 100644 (file)
@@ -1146,7 +1146,7 @@ read_dependence (mem, x)
    to decide whether or not an address may vary; it should return
    nozero whenever variation is possible.  */
 
-rtx
+static rtx
 fixed_scalar_and_varying_struct_p (mem1, mem2, varies_p)
      rtx mem1;
      rtx mem2;
@@ -1173,7 +1173,7 @@ fixed_scalar_and_varying_struct_p (mem1, mem2, varies_p)
 /* Returns nonzero if something about the mode or address format MEM1
    indicates that it might well alias *anything*.  */
 
-int
+static int
 aliases_everything_p (mem)
      rtx mem;
 {
@@ -1248,7 +1248,7 @@ true_dependence (mem, mem_mode, x, varies)
 /* Returns non-zero if a write to X might alias a previous read from
    (or, if WRITEP is non-zero, a write to) MEM.  */
 
-int
+static int
 write_dependence_p (mem, x, writep)
      rtx mem;
      rtx x;