diff options
author | Richard Henderson <rth@cygnus.com> | 1999-03-11 05:56:20 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-03-11 05:56:20 -0800 |
commit | 27922c1362c0c8b3edf757a216195eceae3f51e2 (patch) | |
tree | cb32f2a58fc37a3a6bf27f9a57e9e404fe60b3f2 /gcc/stor-layout.c | |
parent | 8e9fb571ee594a45bc9fcfb309f8669b167ae042 (diff) | |
download | gcc-27922c1362c0c8b3edf757a216195eceae3f51e2.tar.gz |
machmode.h (smallest_mode_for_size): Prototype.
* machmode.h (smallest_mode_for_size): Prototype.
* stor-layout.c (smallest_mode_for_size): Remove static.
From-SVN: r25703
Diffstat (limited to 'gcc/stor-layout.c')
-rw-r--r-- | gcc/stor-layout.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index a712664843f..798a7956707 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -53,8 +53,6 @@ int maximum_field_alignment; May be overridden by front-ends. */ int set_alignment = 0; -static enum machine_mode smallest_mode_for_size PROTO((unsigned int, - enum mode_class)); static tree layout_record PROTO((tree)); static void layout_union PROTO((tree)); @@ -159,7 +157,7 @@ mode_for_size (size, class, limit) /* Similar, but never return BLKmode; return the narrowest mode that contains at least the requested number of bits. */ -static enum machine_mode +enum machine_mode smallest_mode_for_size (size, class) unsigned int size; enum mode_class class; |