diff options
author | Graham Stott <grahams@gcc.gnu.org> | 2001-12-31 05:44:58 +0000 |
---|---|---|
committer | Graham Stott <grahams@gcc.gnu.org> | 2001-12-31 05:44:58 +0000 |
commit | b52155b696cc18ce0bbcac0daef817efaf49dc28 (patch) | |
tree | 8e420572265d9786f1c688776066fae841d9c28d | |
parent | d505d6646145b4a3545e810ea209cdf19e9d230c (diff) | |
download | gcc-b52155b696cc18ce0bbcac0daef817efaf49dc28.zip gcc-b52155b696cc18ce0bbcac0daef817efaf49dc28.tar.gz gcc-b52155b696cc18ce0bbcac0daef817efaf49dc28.tar.bz2 |
except.h: Remove forward def of tree_node, rtx_def and define of tree, rtx.
* except.h: Remove forward def of tree_node, rtx_def and
define of tree, rtx. Also remove undefs.
From-SVN: r48416
-rw-r--r-- | gcc/except.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/except.h b/gcc/except.h index 6af9891..901ec4b 100644 --- a/gcc/except.h +++ b/gcc/except.h @@ -21,16 +21,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA 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 * @@ -162,14 +152,6 @@ extern int (*lang_eh_type_covers) PARAMS ((tree a, tree b)); /* 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 #endif |