From: Yangyu Chen Date: Mon, 23 Sep 2024 17:11:11 +0000 (+0800) Subject: hosthooks.h: Fix GCC_HOST_HOOKS_H typo X-Git-Tag: basepoints/gcc-16~5736 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=824229e38662b5921e156d0fcbd7180462ba9d60;p=thirdparty%2Fgcc.git hosthooks.h: Fix GCC_HOST_HOOKS_H typo The comment of the final endif in hosthooks.h is wrong, it should be GCC_HOST_HOOKS_H instead of GCC_LANG_HOOKS_H. gcc/ChangeLog: * hosthooks.h (struct host_hooks): Fix GCC_HOST_HOOKS_H typo. Signed-off-by: Yangyu Chen --- diff --git a/gcc/hosthooks.h b/gcc/hosthooks.h index 53363801330..8178c9c692a 100644 --- a/gcc/hosthooks.h +++ b/gcc/hosthooks.h @@ -47,4 +47,4 @@ struct host_hooks /* Each host provides its own. */ extern const struct host_hooks host_hooks; -#endif /* GCC_LANG_HOOKS_H */ +#endif /* GCC_HOST_HOOKS_H */