diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c5e3705883c8..5ed662d12312 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2004-12-13 Andrew Pinski + + 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 * c-common.c (fname_as_string): Free namep if we are returning diff --git a/gcc/config/darwin.c b/gcc/config/darwin.c index 04beb4dfa21c..e4a399781591 100644 --- a/gcc/config/darwin.c +++ b/gcc/config/darwin.c @@ -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"); }