re PR bootstrap/66744 (Bootstrap failure due to conflicting access() on i686-w64...
authorMartin Liska <mliska@suse.cz>
Wed, 8 Jul 2015 12:25:40 +0000 (14:25 +0200)
committerMartin Liska <marxin@gcc.gnu.org>
Wed, 8 Jul 2015 12:25:40 +0000 (12:25 +0000)
Fix PR bootstrap/66744.

PR bootstrap/66744
* tree-sra.c (create_access_1): Call ctor without brackets.
(create_artificial_child_access): Likewise.

From-SVN: r225547

gcc/ChangeLog
gcc/tree-sra.c

index 421705dde5bdb3c6618a007953e48391a28258dc..33a2fa03099894cd9f3a1e345d8f55d0d1d953dc 100644 (file)
@@ -1,3 +1,9 @@
+2015-07-08  Martin Liska  <mliska@suse.cz>
+
+       PR bootstrap/66744
+       * tree-sra.c (create_access_1): Call ctor without brackets.
+       (create_artificial_child_access): Likewise.
+
 2015-07-08  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/66793
index 3d26c1e7154aa86bb6e08ebdc0e24efab29b6d04..3f6111c160f3f6b691c698655ca49e21b7b9d5f6 100644 (file)
@@ -858,7 +858,7 @@ mark_parm_dereference (tree base, HOST_WIDE_INT dist, gimple stmt)
 static struct access *
 create_access_1 (tree base, HOST_WIDE_INT offset, HOST_WIDE_INT size)
 {
-  struct access *access = new struct access ();
+  struct access *access = new struct access;
 
   memset (access, 0, sizeof (struct access));
   access->base = base;
@@ -2393,7 +2393,7 @@ create_artificial_child_access (struct access *parent, struct access *model,
 
   gcc_assert (!model->grp_unscalarizable_region);
 
-  struct access *access = new struct access ();
+  struct access *access = new struct access;
   memset (access, 0, sizeof (struct access));
   if (!build_user_friendly_ref_for_offset (&expr, TREE_TYPE (expr), new_offset,
                                           model->type))