Commit ea494cd7 by Martin Sebor Committed by Martin Sebor

re PR translation/80280 (Missing closing quote (%>) c/semantics.c and c/c-typeck.c)

gcc/ChangeLog:

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

From-SVN: r247758
parent f3ec182d
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> 2017-05-08 Bernd Edlinger <bernd.edlinger@hotmail.de>
* target.def (compute_frame_layout): New optional target hook. * target.def (compute_frame_layout): New optional target hook.
......
...@@ -113,7 +113,7 @@ solaris_pragma_align (cpp_reader *pfile ATTRIBUTE_UNUSED) ...@@ -113,7 +113,7 @@ solaris_pragma_align (cpp_reader *pfile ATTRIBUTE_UNUSED)
tree decl = identifier_global_value (t); tree decl = identifier_global_value (t);
if (decl && DECL_P (decl)) if (decl && DECL_P (decl))
warning (0, "%<#pragma align%> must appear before the declaration of " warning (0, "%<#pragma align%> must appear before the declaration of "
"%D, ignoring", decl); "%qD, ignoring", decl);
else else
solaris_pending_aligns = tree_cons (t, build_tree_list (NULL, x), solaris_pending_aligns = tree_cons (t, build_tree_list (NULL, x),
solaris_pending_aligns); solaris_pending_aligns);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment