* gimplify.c (gimplify_one_sizepos): Don't do anything if any VAR_DECL.
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>
Thu, 1 Jul 2004 19:45:28 +0000 (19:45 +0000)
committerRichard Kenner <kenner@gcc.gnu.org>
Thu, 1 Jul 2004 19:45:28 +0000 (15:45 -0400)
From-SVN: r83998

gcc/ChangeLog
gcc/gimplify.c

index 1850bc844d04c71ca376ee0e2d828eaf3fedb499..2ac7f335f471ad3e81bf9a74172bf05355042dcc 100644 (file)
@@ -1,5 +1,7 @@
 2004-07-01  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
 
+       * gimplify.c (gimplify_one_sizepos): Don't do anything if any VAR_DECL.
+
        * tree-pretty-print.c (dump_generic_node, case ARRAY_REF): Use
        access functions for lower bound and element size and only output
        if lower bound nonzero or element size not same as that of type.
index e8fdbe9001f0766657d43974b70aaf17163dc70b..ed1af19a34490465f55f1bd34644edc9d5e61d0d 100644 (file)
@@ -4069,8 +4069,12 @@ void
 gimplify_one_sizepos (tree *expr_p, tree *stmt_p)
 {
   /* We don't do anything if the value isn't there, is constant, or contains
-     A PLACEHOLDER_EXPR.  */
+     A PLACEHOLDER_EXPR.  We also don't want to do anything if it's already
+     a VAR_DECL.  If it's a VAR_DECL from another function, the gimplfier
+     will want to replace it with a new variable, but that will cause problems
+     if this type is from outside the function.  It's OK to have that here.  */
   if (*expr_p == NULL_TREE || TREE_CONSTANT (*expr_p)
+      || TREE_CODE (*expr_p) == VAR_DECL
       || CONTAINS_PLACEHOLDER_P (*expr_p))
     return;