This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
FYI patch applied except.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:39 +0000
- Subject: FYI patch applied except.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
* except.h: Remove forward def of tree_node, rtx_def and
define of tree, rtx. Also remove undefs.
----------------------------------------------------------------
Index: except.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/except.h,v
retrieving revision 1.59
diff -c -p -r1.59 except.h
*** except.h 2001/11/23 02:05:18 1.59
--- except.h 2001/12/31 04:36:24
*************** Software Foundation, 59 Temple Place - S
*** 21,36 ****
02111-1307, USA. */
- #ifndef TREE_CODE
- union tree_node;
- #define tree union tree_node *
- #endif
-
- #ifndef RTX_CODE
- struct rtx_def;
- #define rtx struct rtx_def *
- #endif
-
#ifndef GCC_VARRAY_H
struct varray_head_tag;
#define varray_type struct varray_head_tag *
--- 21,26 ----
*************** extern int (*lang_eh_type_covers) PARAMS
*** 161,174 ****
/* Map a type to a runtime object to match type. */
extern tree (*lang_eh_runtime_type) PARAMS ((tree));
-
- #ifndef TREE_CODE
- #undef tree
- #endif
-
- #ifndef RTX_CODE
- #undef rtx
- #endif
#ifndef GCC_VARRAY_H
#undef varray_type
--- 151,156 ----
----------------------------------------------------------------------