aboutsummaryrefslogtreecommitdiff
path: root/gcc/print-tree.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1993-04-14 15:24:11 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1993-04-14 15:24:11 -0400
commit024b05a77fe6177333f5ffba85048706bd86531b (patch)
tree841573e64ec0c613b54c2e609058accc975ae354 /gcc/print-tree.c
parent7e42fa83058e2ef9449006a298d33e3ae5db1993 (diff)
downloadgcc-024b05a77fe6177333f5ffba85048706bd86531b.zip
gcc-024b05a77fe6177333f5ffba85048706bd86531b.tar.gz
gcc-024b05a77fe6177333f5ffba85048706bd86531b.tar.bz2
(print_node): Use (struct rtx_def *), not (rtx).
From-SVN: r4156
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r--gcc/print-tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c
index 504a808..f1c5b21 100644
--- a/gcc/print-tree.c
+++ b/gcc/print-tree.c
@@ -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");