]> gcc.gnu.org Git - gcc.git/commitdiff
print-tree.c (print_node): Do not use BLOCK_CHAIN when we're not looking at a BLOCK.
authorMark Mitchell <mark@codesourcery.com>
Sun, 18 Feb 2001 06:03:09 +0000 (06:03 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Sun, 18 Feb 2001 06:03:09 +0000 (06:03 +0000)
* print-tree.c (print_node): Do not use BLOCK_CHAIN when we're not
looking at a BLOCK.

From-SVN: r39818

gcc/ChangeLog
gcc/print-tree.c

index 3bbf96baf3b811a53caeb7d33a3942502537dca6..e46bcd31bb787ca47a8f3ea09b60177897140d10 100644 (file)
@@ -1,3 +1,8 @@
+2001-02-17  Mark Mitchell  <mark@codesourcery.com>
+
+       * print-tree.c (print_node): Do not use BLOCK_CHAIN when we're not
+       looking at a BLOCK.
+
 2001-02-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * aclocal.m4 (gcc_AC_CHECK_DECL): Before attempting the test,
index a3674468f4f7c3d5b2f6f87a0c2e837bf275bc76..3bbea3f52f0aa7b85c8dff92cf428eac851cc36c 100644 (file)
@@ -641,7 +641,7 @@ print_node (file, prefix, node, indent)
                    EXPR_WFL_FILENAME (node) : "(no file info)"),
                   EXPR_WFL_LINENO (node), EXPR_WFL_COLNO (node));
        }
-      print_node (file, "chain", BLOCK_CHAIN (node), indent + 4);
+      print_node (file, "chain", TREE_CHAIN (node), indent + 4);
       break;
 
     case 'c':
This page took 0.07865 seconds and 5 git commands to generate.