Commit c7ed8938 by Ilya Enkovich Committed by Ilya Enkovich

re PR ipa/71633 ([CHKP] internal compiler error: in inline_call)

gcc/

	PR ipa/71633
	* ipa-inline-transform.c (inline_call): Support
	instrumented thunks.

gcc/testsuite/

	PR ipa/71633
	* g++.dg/pr71633.C: New test.

From-SVN: r238290
parent 5ce15300
2016-07-13 Ilya Enkovich <ilya.enkovich@intel.com>
PR ipa/71633
* ipa-inline-transform.c (inline_call): Support
instrumented thunks.
2016-07-13 Thomas Preud'homme <thomas.preudhomme@arm.com>
* config/arm/arm.h (TARGET_HAVE_CBZ): Define.
......
......@@ -319,10 +319,14 @@ inline_call (struct cgraph_edge *e, bool update_original,
to = to->global.inlined_to;
if (to->thunk.thunk_p)
{
struct cgraph_node *target = to->callees->callee;
if (in_lto_p)
to->get_untransformed_body ();
to->expand_thunk (false, true);
e = to->callees;
/* When thunk is instrumented we may have multiple callees. */
for (e = to->callees; e && e->callee != target; e = e->next_callee)
;
gcc_assert (e);
}
......
2016-07-13 Ilya Enkovich <ilya.enkovich@intel.com>
PR ipa/71633
* g++.dg/pr71633.C: New test.
2016-07-13 Thomas Preud'homme <thomas.preudhomme@arm.com>
* lib/target-supports.exp (check_effective_target_arm_thumb1_cbz_ok):
......
/* PR71633 */
// { dg-do compile { target i?86-*-* x86_64-*-* } }
/* { dg-options "-fcheck-pointer-bounds -mmpx -O2" } */
class c1
{
virtual void fn1 ();
};
class c2
{
virtual int *fn2 () const;
};
class c3 : c1, c2
{
int *fn2 () const;
int *fn3 (int) const;
};
int *c3::fn2 () const
{
}
int *c3::fn3 (int p) const
{
return fn3 (p);
}
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