(make_var_volatile): Return type is void.
authorRichard Kenner <kenner@gcc.gnu.org>
Tue, 13 Apr 1993 21:22:16 +0000 (17:22 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Tue, 13 Apr 1993 21:22:16 +0000 (17:22 -0400)
(assemble_string): First arg is not pointer to unsigned.

From-SVN: r4145

gcc/varasm.c

index 3b34d4cb8d712559602ce76dff2f2f283ab76ea6..50b348fe8c05bac4908a064f782437120e6aa5d0 100644 (file)
@@ -413,6 +413,7 @@ make_decl_rtl (decl, asmspec, top_level)
 /* Make the rtl for variable VAR be volatile.
    Use this only for static variables.  */
 
+void
 make_var_volatile (var)
      tree var;
 {
@@ -635,7 +636,7 @@ assemble_zeros (size)
 
 void
 assemble_string (p, size)
-     unsigned char *p;
+     char *p;
      int size;
 {
   register int i;