(print_node): Use (struct rtx_def *), not (rtx).
authorRichard Kenner <kenner@gcc.gnu.org>
Wed, 14 Apr 1993 19:24:11 +0000 (15:24 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Wed, 14 Apr 1993 19:24:11 +0000 (15:24 -0400)
From-SVN: r4156

gcc/print-tree.c

index 504a8087c1ebced6a23261e585ffaac61cc578bd..f1c5b2100a952e1df704ae6fe6827941f398867f 100644 (file)
@@ -1,5 +1,5 @@
 /* Prints out tree in human readable form - GNU C-compiler
-   Copyright (C) 1990, 1991 Free Software Foundation, Inc.
+   Copyright (C) 1990, 1991, 1993 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
 
@@ -525,7 +525,7 @@ print_node (file, prefix, node, indent)
              indent_to (file, indent + 4);
              fprintf (file, "rtl %d ", i);
              if (TREE_OPERAND (node, i))
-               print_rtl (file, (rtx) TREE_OPERAND (node, i));
+               print_rtl (file, (struct rtx_def *) TREE_OPERAND (node, i));
              else
                fprintf (file, "(nil)");
              fprintf (file, "\n");