diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-11-04 23:28:29 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-04 23:28:29 +0000 |
commit | bac6bfc5fd765702dc6d0b989b7b5015f8427f83 (patch) | |
tree | 78f19f097dcfbcff933046b48d679797fdee3f95 /gcc/stmt.c | |
parent | 73dcf3b5bb759d2943170d88823552e638313140 (diff) | |
download | gcc-bac6bfc5fd765702dc6d0b989b7b5015f8427f83.zip gcc-bac6bfc5fd765702dc6d0b989b7b5015f8427f83.tar.gz gcc-bac6bfc5fd765702dc6d0b989b7b5015f8427f83.tar.bz2 |
stmt.c (expand_asm, [...]): Make them static.
* stmt.c (expand_asm, expand_asm_operands): Make them static.
* tree.h: Remove the prototypes for expand_asm and
expand_asm_operands.
From-SVN: r90092
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r-- | gcc/stmt.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) { |