From 16ec4ebf00e10e2fd2bc2879e9ede682883951f2 Mon Sep 17 00:00:00 2001 From: Graham Stott Date: Tue, 8 Jan 2002 09:54:39 +0000 Subject: * debug.h: Use "tree" and "rtx" throughout. From-SVN: r48629 --- gcc/debug.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gcc/debug.c') diff --git a/gcc/debug.c b/gcc/debug.c index 05811a94ffd..75d13bada50 100644 --- a/gcc/debug.c +++ b/gcc/debug.c @@ -1,5 +1,5 @@ /* Do-nothing debug hooks for GCC. - Copyright (C) 2001 Free Software Foundation, Inc. + Copyright (C) 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -54,20 +54,20 @@ debug_nothing_void () void debug_nothing_tree (decl) - union tree_node *decl ATTRIBUTE_UNUSED; + tree decl ATTRIBUTE_UNUSED; { } bool debug_true_tree (block) - union tree_node *block ATTRIBUTE_UNUSED; + tree block ATTRIBUTE_UNUSED; { return true; } void debug_nothing_rtx (insn) - struct rtx_def *insn ATTRIBUTE_UNUSED; + rtx insn ATTRIBUTE_UNUSED; { } -- cgit v1.2.1