+2015-02-09 Jan Hubicka <hubicka@ucw.cz>
+
+ PR ipa/64978
+ * ipa-cp.c (gather_caller_stats): Skip thunks.
+ (propagate_constants_topo): Skip aliases.
+
2015-02-09 Kaz Kojima <kkojima@gcc.gnu.org>
PR target/64761
struct cgraph_edge *cs;
for (cs = node->callers; cs; cs = cs->next_caller)
- if (cs->caller->thunk.thunk_p)
- cs->caller->call_for_symbol_thunks_and_aliases (gather_caller_stats,
- stats, false);
- else
+ if (!cs->caller->thunk.thunk_p)
{
stats->count_sum += cs->count;
stats->freq_sum += cs->frequency;
for (cs = v->callees; cs; cs = cs->next_callee)
if (ipa_edge_within_scc (cs)
&& propagate_constants_accross_call (cs))
- push_node_to_stack (topo, cs->callee);
+ push_node_to_stack (topo, cs->callee->function_symbol ());
v = pop_node_from_stack (topo);
}
+2015-02-08 Jan Hubicka <hubicka@ucw.cz>
+
+ PR ipa/64978
+ * g++.dg/torture/pr64978.C: New testcase.
+
2015-02-09 Jakub Jelinek <jakub@redhat.com>
PR sanitizer/64981
--- /dev/null
+/* { dg-do compile } */
+class A {
+public:
+ A(int, int);
+};
+class B {
+public:
+ void m_fn1(bool, const int *, int &);
+ unsigned m_fn2();
+};
+namespace {
+class C {
+ B &VTables;
+ void m_fn3(A, unsigned, const int *, int &);
+
+public:
+ int VFTableBuilder_VisitedBases;
+ B VFTableBuilder_VTables;
+ C() : VTables(VFTableBuilder_VTables) {
+ m_fn3(A(0, 0), 0, 0, VFTableBuilder_VisitedBases);
+ }
+};
+}
+int a;
+void C::m_fn3(A, unsigned, const int *, int &) {
+ for (;;)
+ 1 ? VTables.m_fn2() : 0;
+}
+void B::m_fn1(bool, const int *, int &) { C(); }
+unsigned B::m_fn2() { m_fn1(0, 0, a); }