aboutsummaryrefslogtreecommitdiff
path: root/gcc/except.h
diff options
context:
space:
mode:
authorKito Cheng <kito@0xlab.org>2014-09-18 22:34:23 +0000
committerJoseph Myers <jsm28@gcc.gnu.org>2014-09-18 23:34:23 +0100
commitf1717f8df9419f72f384448de851f0cd8a64c46e (patch)
tree51ef7cf67814b3a880c9055544cea24abae3beb5 /gcc/except.h
parent2fb5f0da9dff6e7f4e394da90c0edcc333402217 (diff)
downloadgcc-f1717f8df9419f72f384448de851f0cd8a64c46e.zip
gcc-f1717f8df9419f72f384448de851f0cd8a64c46e.tar.gz
gcc-f1717f8df9419f72f384448de851f0cd8a64c46e.tar.bz2
Add header guard to several header files.
2014-09-19 Kito Cheng <kito@0xlab.org> * except.h: Fix header guard. * addresses.h: Add missing header guard. * cfghooks.h: Likewise. * collect-utils.h: Likewise. * collect2-aix.h: Likewise. * conditions.h: Likewise. * cselib.h: Likewise. * dwarf2asm.h: Likewise. * graphds.h: Likewise. * graphite-scop-detection.h: Likewise. * gsyms.h: Likewise. * hw-doloop.h: Likewise. * incpath.h: Likewise. * ipa-inline.h: Likewise. * ipa-ref.h: Likewise. * ira-int.h: Likewise. * ira.h: Likewise. * lra-int.h: Likewise. * lra.h: Likewise. * lto-section-names.h: Likewise. * read-md.h: Likewise. * reload.h: Likewise. * rtl-error.h: Likewise. * sdbout.h: Likewise. * targhooks.h: Likewise. * tree-affine.h: Likewise. * xcoff.h: Likewise. * xcoffout.h: Likewise. From-SVN: r215365
Diffstat (limited to 'gcc/except.h')
-rw-r--r--gcc/except.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/except.h b/gcc/except.h
index 3259151..d01a3a0 100644
--- a/gcc/except.h
+++ b/gcc/except.h
@@ -22,8 +22,7 @@ along with GCC; see the file COPYING3. If not see
that the compiler can keep track of where this file is included. This
is e.g. used to avoid including this file in front-end specific files. */
#ifndef GCC_EXCEPT_H
-# define GCC_EXCEPT_H
-#endif
+#define GCC_EXCEPT_H
#include "hash-map.h"
#include "hashtab.h"
@@ -333,3 +332,5 @@ ehr_next (eh_region r, eh_region start)
for ((R) = (FN)->eh->region_tree; (R) != NULL; (R) = ehr_next (R, NULL))
#define FOR_ALL_EH_REGION(R) FOR_ALL_EH_REGION_FN (R, cfun)
+
+#endif