aboutsummaryrefslogtreecommitdiff
path: root/gcc/print-tree.c
diff options
context:
space:
mode:
authorSteven Bosscher <steven@gcc.gnu.org>2003-07-10 11:38:18 +0000
committerSteven Bosscher <steven@gcc.gnu.org>2003-07-10 11:38:18 +0000
commitbcda12f4f4110d1376d822112c9c00d6287471a6 (patch)
tree384851f1df2b0ff1a6f75866077508884ffa365a /gcc/print-tree.c
parent3dbb446ebd77a551c63b958faca007983ee33231 (diff)
downloadgcc-bcda12f4f4110d1376d822112c9c00d6287471a6.zip
gcc-bcda12f4f4110d1376d822112c9c00d6287471a6.tar.gz
gcc-bcda12f4f4110d1376d822112c9c00d6287471a6.tar.bz2
ggc.h, [...]: Use `rtx' instead of `struct rtx_def *'...
2003-07-10 Steven Bosscher <steven@gcc.gnu.org> * ggc.h, integrate.h, langhooks.h, real.h, toplev.h: Use `rtx' instead of `struct rtx_def *', `rtvec' instead of `struct rtvec_dev *' and `tree' instead of `union tree_node *' in function prototypes. * varray.h (const_equiv_data): Likewise for fields. (varray_data_tag): Likewise. * output.h: Likewise, and don't forward declare union tree_node. * emit_rtl.c (const_int_htab_hash): Cast to `rtx' instead of `struct rtxvec *'. * print-tree.c (print_node): Likewise. * reload1.c: Don't redeclare current_function_decl, tree.h is included in this file. From-SVN: r69183
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r--gcc/print-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c
index ebf1a70..6d56d7e 100644
--- a/gcc/print-tree.c
+++ b/gcc/print-tree.c
@@ -599,7 +599,7 @@ print_node (FILE *file, const char *prefix, tree node, int indent)
indent_to (file, indent + 4);
fprintf (file, "rtl %d ", i);
if (TREE_OPERAND (node, i))
- print_rtl (file, (struct rtx_def *) TREE_OPERAND (node, i));
+ print_rtl (file, (rtx) TREE_OPERAND (node, i));
else
fprintf (file, "(nil)");
fprintf (file, "\n");