diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-11-11 23:14:21 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-11 23:14:21 +0000 |
commit | 4dd9b0448f55767c388675e9a91784b4b5105702 (patch) | |
tree | 796db61a51f55e259151a976c94c2d0df8170717 /gcc/explow.c | |
parent | 4e2fb7de2d62d73c3ef7967933af331aa3888f0a (diff) | |
download | gcc-4dd9b0448f55767c388675e9a91784b4b5105702.zip gcc-4dd9b0448f55767c388675e9a91784b4b5105702.tar.gz gcc-4dd9b0448f55767c388675e9a91784b4b5105702.tar.bz2 |
c-typeck.c (c_size_in_bytes, [...]): Make them static.
* c-typeck.c (c_size_in_bytes, record_maybe_used_decl):
Make them static.
* c-tree.h: Remove the corresponding prototypes.
From-SVN: r90505
Diffstat (limited to 'gcc/explow.c')
-rw-r--r-- | gcc/explow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/explow.c b/gcc/explow.c index 45126f6..a3e28ff 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -875,7 +875,7 @@ anti_adjust_stack (rtx adjust) /* Round the size of a block to be pushed up to the boundary required by this machine. SIZE is the desired size, which need not be constant. */ -rtx +static rtx round_push (rtx size) { int align = PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT; |