aboutsummaryrefslogtreecommitdiff
path: root/gcc/stor-layout.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@cygnus.com>1999-03-11 05:56:20 -0800
committerRichard Henderson <rth@gcc.gnu.org>1999-03-11 05:56:20 -0800
commit27922c1362c0c8b3edf757a216195eceae3f51e2 (patch)
treecb32f2a58fc37a3a6bf27f9a57e9e404fe60b3f2 /gcc/stor-layout.c
parent8e9fb571ee594a45bc9fcfb309f8669b167ae042 (diff)
downloadgcc-27922c1362c0c8b3edf757a216195eceae3f51e2.zip
gcc-27922c1362c0c8b3edf757a216195eceae3f51e2.tar.gz
gcc-27922c1362c0c8b3edf757a216195eceae3f51e2.tar.bz2
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.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c
index a712664..798a795 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;