diff options
author | grahams <grahams@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-08 09:54:39 +0000 |
---|---|---|
committer | grahams <grahams@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-08 09:54:39 +0000 |
commit | 4615afccc3585501650cdf52bd4084c32d607abb (patch) | |
tree | 4786ab3ee59e62d81b64eb63ab29c0653469be4b /gcc/debug.c | |
parent | 52be21bca5c7c0409b62e7def6569d92d5212ed7 (diff) | |
download | gcc-4615afccc3585501650cdf52bd4084c32d607abb.tar.gz |
* debug.h: Use "tree" and "rtx" throughout.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48629 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/debug.c')
-rw-r--r-- | gcc/debug.c | 8 |
1 files changed, 4 insertions, 4 deletions
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; { } |