varasm.c (asm_emit_uninitialised): Use 0, not NULL as arg 2 of UNIQUE_SECTION.
authorMarek Michalkiewicz <marekm@linux.org.pl>
Fri, 5 May 2000 16:16:57 +0000 (18:16 +0200)
committerJeff Law <law@gcc.gnu.org>
Fri, 5 May 2000 16:16:57 +0000 (10:16 -0600)
        * varasm.c (asm_emit_uninitialised): Use 0, not NULL
        as arg 2 of UNIQUE_SECTION.

From-SVN: r33708

gcc/ChangeLog
gcc/varasm.c

index 700601770a18cb3014ebebec984edfcf5286cab5..c1ab0418e0ee66f07eaf386c97f25eba0ba5acba 100644 (file)
@@ -1,3 +1,8 @@
+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)
 
        * predict.c: Remove May 4 change.
index 8a6bdde7de3a478cfed2b285541975a70629e1da..3b5c31423c068239e3b139c50f8de8939fa28338 100644 (file)
@@ -1289,7 +1289,7 @@ asm_emit_uninitialised (decl, name, size, rounded)
 #ifdef ASM_OUTPUT_SECTION_NAME
   /* We already know that DECL_SECTION_NAME() == NULL.  */
   if (flag_data_sections != 0 || UNIQUE_SECTION_P (decl))
-    UNIQUE_SECTION (decl, NULL);
+    UNIQUE_SECTION (decl, 0);
 #endif
   
   switch (destination)