re PR ipa/78188 (AIX Bootstrap broken by tree-vrp.c change)
PR bootstrap/78188 PR c++/71848 * ipa-comdats.c (pass_ipa_comdats::gate): Require HAVE_COMDAT_GROUP. From-SVN: r241863
This commit is contained in:
parent
b125dc1e1b
commit
8d48126dc7
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2016-11-05 David Edelsohn <dje.gcc@gmail.com>
|
||||||
|
|
||||||
|
PR bootstrap/78188
|
||||||
|
PR c++/71848
|
||||||
|
* ipa-comdats.c (pass_ipa_comdats::gate): Require HAVE_COMDAT_GROUP.
|
||||||
|
|
||||||
2016-11-04 Jakub Jelinek <jakub@redhat.com>
|
2016-11-04 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
PR target/77834
|
PR target/77834
|
||||||
|
|
|
@ -416,7 +416,7 @@ public:
|
||||||
bool
|
bool
|
||||||
pass_ipa_comdats::gate (function *)
|
pass_ipa_comdats::gate (function *)
|
||||||
{
|
{
|
||||||
return optimize;
|
return HAVE_COMDAT_GROUP && optimize;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // anon namespace
|
} // anon namespace
|
||||||
|
|
Loading…
Add table
Reference in a new issue