OSDN Git Service

(print_node): Use (struct rtx_def *), not (rtx).
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 14 Apr 1993 19:24:11 +0000 (19:24 +0000)
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 14 Apr 1993 19:24:11 +0000 (19:24 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@4156 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/print-tree.c

index 504a808..f1c5b21 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");