re PR middle-end/71529 ([CHKP] ICE in expand_expr_real_1)
authorIlya Enkovich <ilya.enkovich@intel.com>
Wed, 15 Jun 2016 15:49:40 +0000 (15:49 +0000)
committerIlya Enkovich <ienkovich@gcc.gnu.org>
Wed, 15 Jun 2016 15:49:40 +0000 (15:49 +0000)
gcc/

PR middle-end/71529
* ipa-chkp.c (chkp_build_instrumented_fndecl): Fix
DECL_CONTEXT for copied arguments.

gcc/testsuite/

PR middle-end/71529
* gcc.target/i386/pr71529.C: New test.

From-SVN: r237484

gcc/ChangeLog
gcc/ipa-chkp.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr71529.C [new file with mode: 0644]

index 88c1e0f253b6fc9c99923cf05ec80f84f6e4cd84..2aa82f5a47a0a846259cfcfe6c0672f704a399a2 100644 (file)
@@ -1,3 +1,9 @@
+2016-06-15  Ilya Enkovich  <ilya.enkovich@intel.com>
+
+       PR middle-end/71529
+       * ipa-chkp.c (chkp_build_instrumented_fndecl): Fix
+       DECL_CONTEXT for copied arguments.
+
 2016-06-15  Alan Hayward  <alan.hayward@arm.com>
 
        PR tree-optimization/71483
index 5f5df6483a79657a3b5d09fd066170e440b8c2dd..86c48f14f64d8cc5326984048c8352575f7fb2eb 100644 (file)
@@ -207,7 +207,13 @@ chkp_build_instrumented_fndecl (tree fndecl)
   /* For functions with body versioning will make a copy of arguments.
      For functions with no body we need to do it here.  */
   if (!gimple_has_body_p (fndecl))
-    DECL_ARGUMENTS (new_decl) = copy_list (DECL_ARGUMENTS (fndecl));
+    {
+      tree arg;
+
+      DECL_ARGUMENTS (new_decl) = copy_list (DECL_ARGUMENTS (fndecl));
+      for (arg = DECL_ARGUMENTS (new_decl); arg; arg = DECL_CHAIN (arg))
+       DECL_CONTEXT (arg) = new_decl;
+    }
 
   /* We are going to modify attributes list and therefore should
      make own copy.  */
index 60c3192c90bd827d1ec91ace1bad0abac0bce608..dbd8df829b56a137323e2a334c936eacc8895797 100644 (file)
@@ -1,3 +1,8 @@
+2016-06-15  Ilya Enkovich  <ilya.enkovich@intel.com>
+
+       PR middle-end/71529
+       * gcc.target/i386/pr71529.C: New test.
+
 2016-06-15  Alan Hayward  <alan.hayward@arm.com>
 
        PR tree-optimization/71483
diff --git a/gcc/testsuite/gcc.target/i386/pr71529.C b/gcc/testsuite/gcc.target/i386/pr71529.C
new file mode 100644 (file)
index 0000000..3169101
--- /dev/null
@@ -0,0 +1,22 @@
+/* PR71529 */
+/* { dg-do compile { target { ! x32 } } } */
+/* { dg-options "-fcheck-pointer-bounds -mmpx -O2" } */
+
+class c1
+{
+ public:
+  virtual ~c1 ();
+};
+
+class c2
+{
+ public:
+  virtual ~c2 ();
+};
+
+class c3 : c1, c2 { };
+
+int main (int, char **)
+{
+  c3 obj;
+}