diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-04 23:28:29 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-04 23:28:29 +0000 |
commit | 9bd0c4765e9f4096a67d4b10deb79651cc28dffb (patch) | |
tree | 78f19f097dcfbcff933046b48d679797fdee3f95 /gcc/stmt.c | |
parent | fe7d79c5a0697e7d2923a99dc2f489431dcaa062 (diff) | |
download | ppe42-gcc-9bd0c4765e9f4096a67d4b10deb79651cc28dffb.tar.gz ppe42-gcc-9bd0c4765e9f4096a67d4b10deb79651cc28dffb.zip |
* stmt.c (expand_asm, expand_asm_operands): Make them static.
* tree.h: Remove the prototypes for expand_asm and
expand_asm_operands.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90092 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r-- | gcc/stmt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c index 08dabdef1cf..d7f37a30f7b 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -260,7 +260,7 @@ n_occurrences (int c, const char *s) or an ADDR_EXPR containing a STRING_CST. VOL nonzero means the insn is volatile; don't optimize it. */ -void +static void expand_asm (tree string, int vol) { rtx body; @@ -611,7 +611,7 @@ decl_conflicts_with_clobbers_p (tree decl, const HARD_REG_SET clobbered_regs) VOL nonzero means the insn is volatile; don't optimize it. */ -void +static void expand_asm_operands (tree string, tree outputs, tree inputs, tree clobbers, int vol, location_t locus) { |