From f1717f8df9419f72f384448de851f0cd8a64c46e Mon Sep 17 00:00:00 2001 From: Kito Cheng Date: Thu, 18 Sep 2014 22:34:23 +0000 Subject: Add header guard to several header files. 2014-09-19 Kito Cheng * 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 --- gcc/targhooks.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gcc/targhooks.h') diff --git a/gcc/targhooks.h b/gcc/targhooks.h index dad9520..9178c30 100644 --- a/gcc/targhooks.h +++ b/gcc/targhooks.h @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see . */ +#ifndef GCC_TARGHOOKS_H +#define GCC_TARGHOOKS_H + extern bool default_legitimate_address_p (enum machine_mode, rtx, bool); extern void default_external_libcall (rtx); @@ -212,3 +215,5 @@ extern tree std_gimplify_va_arg_expr (tree, tree, gimple_seq *, gimple_seq *); extern bool can_use_doloop_if_innermost (const widest_int &, const widest_int &, unsigned int, bool); + +#endif /* GCC_TARGHOOKS_H */ -- cgit v1.1