diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1994-01-31 14:25:21 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1994-01-31 14:25:21 -0800 |
commit | bacacd4dc4c7f6f2b9b9ab44776b40561458853d (patch) | |
tree | 48f6bfe56854ffca6883d21dcf3d906ec1699b6c /gcc | |
parent | 186f92ce97d89845a935a9fbc5924dc3f813541f (diff) | |
download | gcc-bacacd4dc4c7f6f2b9b9ab44776b40561458853d.zip gcc-bacacd4dc4c7f6f2b9b9ab44776b40561458853d.tar.gz gcc-bacacd4dc4c7f6f2b9b9ab44776b40561458853d.tar.bz2 |
(class_narrowest_mode, byte_mode, word_mode): Add
extern to declaration.
From-SVN: r6444
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/bc-emit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/bc-emit.c b/gcc/bc-emit.c index 62cc533..9497c7e 100644 --- a/gcc/bc-emit.c +++ b/gcc/bc-emit.c @@ -42,14 +42,14 @@ extern struct obstack *rtl_obstack; /* Indexed by mode class, gives the narrowest mode for each class. */ -enum machine_mode class_narrowest_mode[(int) MAX_MODE_CLASS]; +extern enum machine_mode class_narrowest_mode[(int) MAX_MODE_CLASS]; /* Commonly used modes. */ /* Mode whose width is BITS_PER_UNIT */ -enum machine_mode byte_mode; +extern enum machine_mode byte_mode; /* Mode whose width is BITS_PER_WORD */ -enum machine_mode word_mode; +extern enum machine_mode word_mode; /* Vector indexed by opcode giving info about the args for each opcode. */ static struct arityvec arityvec[] = { |