From: Gabriel Dos Reis Date: Wed, 14 Aug 2002 02:15:40 +0000 (+0000) Subject: * tree.h: Guard against multiple inclusion. X-Git-Tag: releases/gcc-3.3.0~3299 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=df89f8e758c2eed91beed8fad8cc8dd7214f17c4;p=thirdparty%2Fgcc.git * tree.h: Guard against multiple inclusion. From-SVN: r56269 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 93d3b9a300d2..7aefc5d51087 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-08-14 Gabriel Dos Reis + + * tree.h: Guard against multiple inclusion. + 2002-08-14 Hans-Peter Nilsson * reload1.c (reload_cse_simplify): Before checking diff --git a/gcc/tree.h b/gcc/tree.h index fd8a55964883..856a18d517e0 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -19,6 +19,9 @@ along with GCC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifndef GCC_TREE_H +#define GCC_TREE_H + #include "machmode.h" #include "version.h" #include "location.h" @@ -3098,3 +3101,5 @@ extern const char *dump_flag_name PARAMS ((enum tree_dump_index)); extern void fancy_abort PARAMS ((const char *, int, const char *)) ATTRIBUTE_NORETURN; #define abort() fancy_abort (__FILE__, __LINE__, __FUNCTION__) + +#endif /* GCC_TREE_H */