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
+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.
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):
--- /dev/null
+/* 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);
+}