]> gcc.gnu.org Git - gcc.git/commitdiff
re PR middle-end/17756 (contained_3.f90)
authorRichard Henderson <rth@redhat.com>
Tue, 5 Oct 2004 22:42:34 +0000 (15:42 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Tue, 5 Oct 2004 22:42:34 +0000 (15:42 -0700)
        PR 17756
        * tree-ssa-operands.c (get_expr_operands): Handle CONST_DECL.

From-SVN: r88579

gcc/ChangeLog
gcc/tree-ssa-operands.c

index 327be6c7d6fda3e3d1a4d385440457fd967c1ebe..1d7d8dcec916770b563a9e81f57b88c105eda607 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-05  Richard Henderson  <rth@redhat.com>
+
+       PR 17756
+       * tree-ssa-operands.c (get_expr_operands): Handle CONST_DECL.
+
 2004-10-05  Kelley Cook  <kcook@gcc.gnu.org>
 
        PR bootstrap/17817
index 2506761d6248b5d47f94153a4344c7711dfd0aa3..ac5f6075f74a4a65129ccceb442b0726a65b5572 100644 (file)
@@ -1004,6 +1004,7 @@ get_expr_operands (tree stmt, tree *expr_p, int flags)
     case VAR_DECL:
     case PARM_DECL:
     case RESULT_DECL:
+    case CONST_DECL:
       /* If we found a variable, add it to DEFS or USES depending
         on the operand flags.  */
       add_stmt_operand (expr_p, stmt, flags);
This page took 0.070732 seconds and 5 git commands to generate.