re PR translation/80280 (Missing closing quote (%>) c/semantics.c and c/c-typeck.c)
authorMartin Sebor <msebor@redhat.com>
Mon, 8 May 2017 20:50:24 +0000 (20:50 +0000)
committerMartin Sebor <msebor@gcc.gnu.org>
Mon, 8 May 2017 20:50:24 +0000 (14:50 -0600)
gcc/ChangeLog:

PR translation/80280
* config/sol2-c.c (solaris_pragma_align): Correct quoting.

From-SVN: r247758

gcc/ChangeLog
gcc/config/sol2-c.c

index dc2d9df..859104f 100644 (file)
@@ -1,3 +1,8 @@
+2017-05-08  Martin Sebor  <msebor@redhat.com>
+
+       PR translation/80280
+       * config/sol2-c.c (solaris_pragma_align): Correct quoting.
+
 2017-05-08  Bernd Edlinger  <bernd.edlinger@hotmail.de>
 
        * target.def (compute_frame_layout): New optional target hook.
index 5a44a88..7c404b0 100644 (file)
@@ -113,7 +113,7 @@ solaris_pragma_align (cpp_reader *pfile ATTRIBUTE_UNUSED)
       tree decl = identifier_global_value (t);
       if (decl && DECL_P (decl))
        warning (0, "%<#pragma align%> must appear before the declaration of "
-                "%D, ignoring", decl);
+                "%qD, ignoring", decl);
       else
        solaris_pending_aligns = tree_cons (t, build_tree_list (NULL, x),
                                            solaris_pending_aligns);