Commit 5555d6d1 by Mike Stump

collect2.c (is_ctor_dtor): Make sizeof argument match the string.

        * collect2.c (is_ctor_dtor): Make sizeof argument match the
        string.

From-SVN: r5239
parent 2bf5788b
......@@ -402,7 +402,7 @@ is_ctor_dtor (s)
#endif
#else
{ "GLOBAL_$I$", sizeof ("GLOBAL_$I$")-1, 1, 0 },
{ "GLOBAL_$D$", sizeof ("GLOBAL_$I$")-1, 2, 0 },
{ "GLOBAL_$D$", sizeof ("GLOBAL_$D$")-1, 2, 0 },
#endif
#ifdef CFRONT_LOSSAGE /* Don't collect cfront initialization functions.
cfront has its own linker procedure to collect them;
......
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