Commit 4edee0e6 by Marek Michalkiewicz Committed by Jeff Law

varasm.c (asm_emit_uninitialised): Use 0, not NULL as arg 2 of UNIQUE_SECTION.

        * varasm.c (asm_emit_uninitialised): Use 0, not NULL
        as arg 2 of UNIQUE_SECTION.

From-SVN: r33708
parent cde9b87d
2000-05-05 Marek Michalkiewicz <marekm@linux.org.pl>
* varasm.c (asm_emit_uninitialised): Use 0, not NULL
as arg 2 of UNIQUE_SECTION.
Fri May 5 10:11:41 2000 Jeffrey A Law (law@cygnus.com) Fri May 5 10:11:41 2000 Jeffrey A Law (law@cygnus.com)
* predict.c: Remove May 4 change. * predict.c: Remove May 4 change.
......
...@@ -1289,7 +1289,7 @@ asm_emit_uninitialised (decl, name, size, rounded) ...@@ -1289,7 +1289,7 @@ asm_emit_uninitialised (decl, name, size, rounded)
#ifdef ASM_OUTPUT_SECTION_NAME #ifdef ASM_OUTPUT_SECTION_NAME
/* We already know that DECL_SECTION_NAME() == NULL. */ /* We already know that DECL_SECTION_NAME() == NULL. */
if (flag_data_sections != 0 || UNIQUE_SECTION_P (decl)) if (flag_data_sections != 0 || UNIQUE_SECTION_P (decl))
UNIQUE_SECTION (decl, NULL); UNIQUE_SECTION (decl, 0);
#endif #endif
switch (destination) switch (destination)
......
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