This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
FYI patch applied basic-block.h remove cruff.
- From: Graham Stott <grahams at redhat dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Mon, 31 Dec 2001 05:38:46 +0000
- Subject: FYI patch applied basic-block.h remove cruff.
All,
I've applied this patch which removes more cruff.
The patch was preapproved by rth.
Bootstrapped i686-pc-linux-gnu all languages.
Graham
ChangeLog
* basic-block.h: Remove forward def of tree_node and
define of tree.
------------------------------------------------------------------
Index: basic-block.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/basic-block.h,v
retrieving revision 1.131
diff -c -p -r1.131 basic-block.h
*** basic-block.h 2001/12/17 17:10:32 1.131
--- basic-block.h 2001/12/31 04:36:20
*************** Software Foundation, 59 Temple Place - S
*** 27,37 ****
#include "varray.h"
#include "partition.h"
- #ifndef TREE_CODE
- union tree_node;
- #define tree union tree_node *
- #endif
-
/* Head of register set linked list. */
typedef bitmap_head regset_head;
/* A pointer to a regset_head. */
--- 27,32 ----
------------------------------------------------------------------------