diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-30 17:12:54 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-30 17:12:54 +0000 |
commit | fe69e4fe49fadbdae6e2df5135a7f3ad796b406a (patch) | |
tree | 9bc3de8e709d3e6f49072e8815b5052e4a61c974 /gcc/alias.c | |
parent | bc7a7e1fbef30afc836858d68c5676506585617a (diff) | |
download | gcc-fe69e4fe49fadbdae6e2df5135a7f3ad796b406a.tar.gz |
* alias.c (fixed_scalar_and_varying_struct_p): Add "static" to
function definition.
(aliases_everything_p, write_dependence_p):Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24926 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/alias.c')
-rw-r--r-- | gcc/alias.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/alias.c b/gcc/alias.c index 4897cde25c5..876b3efbae4 100644 --- a/gcc/alias.c +++ b/gcc/alias.c @@ -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; |