(DO_GLOBAL_CTORS_BODY): Use long instead of

HOST_WIDE_INT.

From-SVN: r7859
This commit is contained in:
Jim Wilson 1994-08-05 09:22:40 -07:00
parent 26f887e56d
commit 976ef4f727
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ extern void __do_global_dtors ();
#ifndef DO_GLOBAL_CTORS_BODY
#define DO_GLOBAL_CTORS_BODY \
do { \
unsigned nptrs = (unsigned HOST_WIDE_INT) __CTOR_LIST__[0]; \
unsigned long nptrs = (unsigned long) __CTOR_LIST__[0]; \
unsigned i; \
if (nptrs == -1) \
for (nptrs = 0; __CTOR_LIST__[nptrs + 1] != 0; nptrs++); \