Commit 2c72b78f by Jeffrey A Law Committed by Jeff Law

alias.c (fixed_scalar_and_varying_struct_p): Add "static" to function definition.

        * alias.c (fixed_scalar_and_varying_struct_p): Add "static" to
        function definition.
        (aliases_everything_p, write_dependence_p):Likewise.

From-SVN: r24926
parent 4833c8bf
Sat Jan 30 08:27:23 1999 Jeffrey A Law (law@cygnus.com) 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. * install.texi: Fix merge lossages.
* cccp.c (main): Only call setlocale (LC_MESSAGES, ...) if LC_MESSAGES * cccp.c (main): Only call setlocale (LC_MESSAGES, ...) if LC_MESSAGES
......
...@@ -1146,7 +1146,7 @@ read_dependence (mem, x) ...@@ -1146,7 +1146,7 @@ read_dependence (mem, x)
to decide whether or not an address may vary; it should return to decide whether or not an address may vary; it should return
nozero whenever variation is possible. */ nozero whenever variation is possible. */
rtx static rtx
fixed_scalar_and_varying_struct_p (mem1, mem2, varies_p) fixed_scalar_and_varying_struct_p (mem1, mem2, varies_p)
rtx mem1; rtx mem1;
rtx mem2; rtx mem2;
...@@ -1173,7 +1173,7 @@ fixed_scalar_and_varying_struct_p (mem1, mem2, varies_p) ...@@ -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 /* Returns nonzero if something about the mode or address format MEM1
indicates that it might well alias *anything*. */ indicates that it might well alias *anything*. */
int static int
aliases_everything_p (mem) aliases_everything_p (mem)
rtx mem; rtx mem;
{ {
...@@ -1248,7 +1248,7 @@ true_dependence (mem, mem_mode, x, varies) ...@@ -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 /* Returns non-zero if a write to X might alias a previous read from
(or, if WRITEP is non-zero, a write to) MEM. */ (or, if WRITEP is non-zero, a write to) MEM. */
int static int
write_dependence_p (mem, x, writep) write_dependence_p (mem, x, writep)
rtx mem; rtx mem;
rtx x; rtx x;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment