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
This commit is contained in:
parent
7e16ce79a4
commit
931388ce2d
@ -1,3 +1,8 @@
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user