From 9940eedb50c92541a324c2af07f4bf8f9fd6f312 Mon Sep 17 00:00:00 2001 From: Andrew Pinski Date: Mon, 13 Dec 2004 19:42:02 +0000 Subject: [PATCH] re PR target/18964 (Typo in visibility warning message) 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. From-SVN: r92100 --- gcc/ChangeLog | 6 ++++++ gcc/config/darwin.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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"); }