Commit f4e2ed09 by Andreas Jaeger Committed by Jeff Law

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

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

        * errors.h: Add extern to prototypes.

From-SVN: r30410
parent 016cebc3
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) Fri Nov 5 01:44:09 1999 Jeffrey A Law (law@cygnus.com)
* configure.in (m68k-next-nextstep4): Handle Openstep 4.2. * configure.in (m68k-next-nextstep4): Handle Openstep 4.2.
......
...@@ -25,9 +25,9 @@ Boston, MA 02111-1307, USA. */ ...@@ -25,9 +25,9 @@ Boston, MA 02111-1307, USA. */
#ifndef __GCC_ERRORS_H__ #ifndef __GCC_ERRORS_H__
#define __GCC_ERRORS_H__ #define __GCC_ERRORS_H__
void warning PVPROTO ((const char *format, ...)) ATTRIBUTE_PRINTF_1; extern void warning PVPROTO ((const char *format, ...)) ATTRIBUTE_PRINTF_1;
void error PVPROTO ((const char *format, ...)) ATTRIBUTE_PRINTF_1; extern void error PVPROTO ((const char *format, ...)) ATTRIBUTE_PRINTF_1;
void fatal PVPROTO ((const char *format, ...)) extern void fatal PVPROTO ((const char *format, ...))
ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN; ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
extern int have_error; extern int have_error;
......
...@@ -140,7 +140,7 @@ struct operand_data ...@@ -140,7 +140,7 @@ struct operand_data
static struct operand_data null_operand = 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; static struct operand_data *odata = &null_operand;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment