Commit 8b2e2b2f by Richard Kenner

(ASM_FINISH_DECLARE_OBJECT): Set size_directive_output to 1.

From-SVN: r6695
parent 877eef6d
/* Definitions of target machine for GNU compiler. /* Definitions of target machine for GNU compiler for
Motorola m88100 in an 88open OCS/BCS environment. Motorola m88100 in an 88open OCS/BCS environment.
Copyright (C) 1988, 1989, 1990, 1991, 1993 Free Software Foundation, Inc. Copyright (C) 1988, 89, 90, 91, 93, 1994 Free Software Foundation, Inc.
Contributed by Michael Tiemann (tiemann@mcc.com) Contributed by Michael Tiemann (tiemann@mcc.com)
Enhanced by Michael Meissner (meissner@osf.org) Enhanced by Michael Meissner (meissner@osf.org)
Version 2 port by Tom Wood (twood@pets.sps.mot.com) Version 2 port by Tom Wood (twood@pets.sps.mot.com)
...@@ -197,13 +197,13 @@ extern char * reg_names[]; ...@@ -197,13 +197,13 @@ extern char * reg_names[];
Redefined in sysv4.h, and luna.h. */ Redefined in sysv4.h, and luna.h. */
#define VERSION_INFO1 "88open OCS/BCS, " #define VERSION_INFO1 "88open OCS/BCS, "
#ifndef VERSION_INFO2 #ifndef VERSION_INFO2
#define VERSION_INFO2 "$Revision: 1.56 $" #define VERSION_INFO2 "$Revision: 1.57 $"
#endif #endif
#ifndef VERSION_STRING #ifndef VERSION_STRING
#define VERSION_STRING version_string #define VERSION_STRING version_string
#ifdef __STDC__ #ifdef __STDC__
#define TM_RCS_ID "@(#)" __FILE__ " $Revision: 1.56 $ " __DATE__ #define TM_RCS_ID "@(#)" __FILE__ " $Revision: 1.57 $ " __DATE__
#else #else
#define TM_RCS_ID "$What$" #define TM_RCS_ID "$What$"
#endif /* __STDC__ */ #endif /* __STDC__ */
...@@ -1966,6 +1966,7 @@ do { \ ...@@ -1966,6 +1966,7 @@ do { \
&& DECL_INITIAL (DECL) == error_mark_node \ && DECL_INITIAL (DECL) == error_mark_node \
&& !size_directive_output) \ && !size_directive_output) \
{ \ { \
size_directive_output = 1; \
fprintf (FILE, "\t%s\t ", SIZE_ASM_OP); \ fprintf (FILE, "\t%s\t ", SIZE_ASM_OP); \
assemble_name (FILE, name); \ assemble_name (FILE, name); \
fprintf (FILE, ",%d\n", int_size_in_bytes (TREE_TYPE (DECL))); \ fprintf (FILE, ",%d\n", int_size_in_bytes (TREE_TYPE (DECL))); \
......
/* svr4.h -- operating system specific defines to be used when /* svr4.h -- operating system specific defines to be used when
targeting GCC for some generic System V Release 4 system. targeting GCC for some generic System V Release 4 system.
Copyright (C) 1991 Free Software Foundation, Inc. Copyright (C) 1991, 1994 Free Software Foundation, Inc.
Contributed by Ron Guilmette (rfg@netcom.com).
Written by Ron Guilmette (rfg@ncd.com).
This file is part of GNU CC. This file is part of GNU CC.
...@@ -612,6 +611,7 @@ do { \ ...@@ -612,6 +611,7 @@ do { \
&& DECL_INITIAL (DECL) == error_mark_node \ && DECL_INITIAL (DECL) == error_mark_node \
&& !size_directive_output) \ && !size_directive_output) \
{ \ { \
size_directive_output = 1; \
fprintf (FILE, "\t%s\t ", SIZE_ASM_OP); \ fprintf (FILE, "\t%s\t ", SIZE_ASM_OP); \
assemble_name (FILE, name); \ assemble_name (FILE, name); \
fprintf (FILE, ",%d\n", int_size_in_bytes (TREE_TYPE (DECL))); \ fprintf (FILE, ",%d\n", int_size_in_bytes (TREE_TYPE (DECL))); \
......
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