genoutput.c (null_operand =): Initialize all fields.

* genoutput.c (null_operand =): Initialize all fields.

        * errors.h: Add extern to prototypes.

From-SVN: r30410
This commit is contained in:
Andreas Jaeger 1999-11-05 10:12:56 +01:00 committed by Jeff Law
parent 016cebc3e8
commit f4e2ed09c9
3 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
1999-11-05 Andreas Jaeger <aj@suse.de>
* genoutput.c (null_operand =): Initialize all fields.
* errors.h: Add extern to prototypes.
Fri Nov 5 01:44:09 1999 Jeffrey A Law (law@cygnus.com)
* configure.in (m68k-next-nextstep4): Handle Openstep 4.2.

View File

@ -25,9 +25,9 @@ Boston, MA 02111-1307, USA. */
#ifndef __GCC_ERRORS_H__
#define __GCC_ERRORS_H__
void warning PVPROTO ((const char *format, ...)) ATTRIBUTE_PRINTF_1;
void error PVPROTO ((const char *format, ...)) ATTRIBUTE_PRINTF_1;
void fatal PVPROTO ((const char *format, ...))
extern void warning PVPROTO ((const char *format, ...)) ATTRIBUTE_PRINTF_1;
extern void error PVPROTO ((const char *format, ...)) ATTRIBUTE_PRINTF_1;
extern void fatal PVPROTO ((const char *format, ...))
ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
extern int have_error;

View File

@ -140,7 +140,7 @@ struct operand_data
static struct operand_data null_operand =
{
0, 0, "", "", VOIDmode, 0, 0, 0, 0
0, 0, "", "", VOIDmode, 0, 0, 0, 0, 0
};
static struct operand_data *odata = &null_operand;