diff options
author | Andrew Pinski <pinskia@physics.uc.edu> | 2004-12-13 19:42:02 +0000 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2004-12-13 11:42:02 -0800 |
commit | 9940eedb50c92541a324c2af07f4bf8f9fd6f312 (patch) | |
tree | 7250f3ab7e48beef9540684ed9aea3258dd97c8e /gcc | |
parent | 3bed147cfe3bf6ed71f5b686bc0256eb52876116 (diff) | |
download | gcc-9940eedb50c92541a324c2af07f4bf8f9fd6f312.zip gcc-9940eedb50c92541a324c2af07f4bf8f9fd6f312.tar.gz gcc-9940eedb50c92541a324c2af07f4bf8f9fd6f312.tar.bz2 |
re PR target/18964 (Typo in visibility warning message)
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/darwin.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c5e3705..5ed662d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/config/darwin.c b/gcc/config/darwin.c index 04beb4d..e4a3997 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"); } |