Commit 931388ce by Jason Merrill Committed by Jason Merrill

c-common.c (check_cxx_fundamental_alignment_constraints): Check DECL_EXTERNAL.

	* c-common.c (check_cxx_fundamental_alignment_constraints): Check
	DECL_EXTERNAL.

From-SVN: r240167
parent 7e16ce79
2016-09-15 Jason Merrill <jason@redhat.com>
* c-common.c (check_cxx_fundamental_alignment_constraints): Check
DECL_EXTERNAL.
2016-09-14 Jason Merrill <jason@redhat.com>
* c-common.c (check_cxx_fundamental_alignment_constraints): Don't
......
......@@ -7870,7 +7870,7 @@ check_cxx_fundamental_alignment_constraints (tree node,
if (VAR_P (node))
{
if (TREE_STATIC (node))
if (TREE_STATIC (node) || DECL_EXTERNAL (node))
/* For file scope variables and static members, the target supports
alignments that are at most MAX_OFILE_ALIGNMENT. */
max_align = MAX_OFILE_ALIGNMENT;
......
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