summaryrefslogtreecommitdiff
path: root/gcc/crtstuff.c
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2000-11-20 01:48:49 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2000-11-20 01:48:49 +0000
commitb187c718a6c28f4c9ed44e0123420e6bae5247ad (patch)
tree9114017673ee46bc9f27a88d2903f91b7e83cf4e /gcc/crtstuff.c
parentf9c54ddc9ad9605d9fc3357a049bca1dca97ab3e (diff)
downloadgcc-b187c718a6c28f4c9ed44e0123420e6bae5247ad.tar.gz
* crtstuff.c (force_to_data): Use array size 1 not 0.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37579 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/crtstuff.c')
-rw-r--r--gcc/crtstuff.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/crtstuff.c b/gcc/crtstuff.c
index d5f23cbaf3f..2a5864dca71 100644
--- a/gcc/crtstuff.c
+++ b/gcc/crtstuff.c
@@ -344,7 +344,7 @@ __frame_dummy (void)
#endif /* defined(INIT_SECTION_ASM_OP) */
/* Force cc1 to switch to .data section. */
-static func_ptr force_to_data[0] __attribute__ ((__unused__)) = { };
+static func_ptr force_to_data[1] __attribute__ ((__unused__)) = { };
/* NOTE: In order to be able to support SVR4 shared libraries, we arrange
to have one set of symbols { __CTOR_LIST__, __DTOR_LIST__, __CTOR_END__,
@@ -495,7 +495,7 @@ __do_global_ctors (void)
#endif /* defined(INIT_SECTION_ASM_OP) */
/* Force cc1 to switch to .data section. */
-static func_ptr force_to_data[0] __attribute__ ((__unused__)) = { };
+static func_ptr force_to_data[1] __attribute__ ((__unused__)) = { };
/* Put a word containing zero at the end of each of our two lists of function
addresses. Note that the words defined here go into the .ctors and .dtors
@@ -586,7 +586,7 @@ __dereg_frame_dtor (void)
/* Terminate the frame section with a final zero. */
/* Force cc1 to switch to .data section. */
-static void * force_to_data[0] __attribute__ ((__unused__)) = { };
+static void * force_to_data[1] __attribute__ ((__unused__)) = { };
typedef unsigned int ui32 __attribute__ ((mode (SI)));
asm (EH_FRAME_SECTION_ASM_OP);