Fix pr61848, linux kernel miscompile
authorMarkus Trippelsdorf <trippels@gcc.gnu.org>
Fri, 17 Oct 2014 05:10:07 +0000 (05:10 +0000)
committerMarkus Trippelsdorf <trippels@gcc.gnu.org>
Fri, 17 Oct 2014 05:10:07 +0000 (05:10 +0000)
commit5fcffe51f0feba3b795e6668582c63760db8389a
tree6d8bcf2cd6b137ef3641d6859e51846fa31622ac
parentd6db0df55666e45c22c11681047c6088e24f0256
Fix pr61848, linux kernel miscompile

This patch cures the linux kernel boot failure when compiled using
trunk gcc.

At its heart, the problem is caused by merge_decls merging from the
old decl to the new decl, then copying back to the old decl and
discarding the new.  When Jan moved some fields to the symtab,
"copying back to the old decl" was lost for those fields.  Really,
it would be best if merge_decls was rewritten to merge everything to
the kept decl, but here I'm just doing that for fields accessed via
decl_with_vis.symtab_node.

2014-10-17  Alan Modra  <amodra@gmail.com>

gcc/c/
PR middle-end/61848
* c-decl.c (merge_decls): Don't merge section name or tls model
to newdecl symtab node, instead merge to olddecl.  Override
existing olddecl section name.  Set tls_model for all thread-local
vars, not just OMP thread-private ones.  Remove incorrect comment.
gcc/cp/
PR middle-end/61848
* decl.c (merge_decls): Don't merge section name, comdat group or
tls model to newdecl symtab node, instead merge to olddecl.
Override existing olddecl section name.  Set tls_model for all
thread-local vars, not just OMP thread-private ones.  Remove
incorrect comment.

2014-10-17  Markus Trippelsdorf  <markus@trippelsdorf.de>

PR middle-end/61848
* g++.dg/torture/pr61848.C: New testcase.
* gcc.c-torture/compile/pr61848.c: New testcase.

From-SVN: r216361
gcc/ChangeLog
gcc/c/c-decl.c
gcc/cp/ChangeLog
gcc/cp/decl.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/torture/pr61848.C [new file with mode: 0644]
gcc/testsuite/gcc.c-torture/compile/pr61848.c [new file with mode: 0644]