re PR target/18964 (Typo in visibility warning message)
authorAndrew Pinski <pinskia@physics.uc.edu>
Mon, 13 Dec 2004 19:42:02 +0000 (19:42 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Mon, 13 Dec 2004 19:42:02 +0000 (11:42 -0800)
2004-12-13  Andrew Pinski  <pinskia@physics.uc.edu>

        PR target/18964
        * config/darwin.c (darwin_assemble_visibility): Fix minor diadnostic
        problem, adding a space at the end of the string before concatenation.

From-SVN: r92100

gcc/ChangeLog
gcc/config/darwin.c

index c5e3705883c89a7aaaf1fde3ee8b46d2308d304b..5ed662d1231248c346affbfeee91c2dfb0d0c663 100644 (file)
@@ -1,3 +1,9 @@
+2004-12-13  Andrew Pinski  <pinskia@physics.uc.edu>
+
+       PR target/18964
+       * config/darwin.c (darwin_assemble_visibility): Fix minor diadnostic
+       problem, adding a space at the end of the string before concatenation.
+
 2004-12-13  Kazu Hirata  <kazu@cs.umass.edu>
 
        * c-common.c (fname_as_string): Free namep if we are returning
index 04beb4dfa21cd9b67483a154402d3e0bd3b396ca..e4a3997815917cdd294984ebd936f26b118a21ad 100644 (file)
@@ -1329,7 +1329,7 @@ darwin_assemble_visibility (tree decl, int vis)
       fputs ("\n", asm_out_file);
     }
   else
-    warning ("internal and protected visibility attributes not supported"
+    warning ("internal and protected visibility attributes not supported "
             "in this configuration; ignored");
 }