aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYangyu Chen <chenyangyu@isrc.iscas.ac.cn>2024-09-24 01:11:11 +0800
committerJiawei <jiawei@iscas.ac.cn>2024-09-24 10:56:09 +0800
commit824229e38662b5921e156d0fcbd7180462ba9d60 (patch)
tree304165efd3e98e465f4ae82ff6f4ab63bcc5bd6f
parentf5ee372b012594830f6d5f7f4b7e01bae810b1da (diff)
downloadgcc-824229e38662b5921e156d0fcbd7180462ba9d60.zip
gcc-824229e38662b5921e156d0fcbd7180462ba9d60.tar.gz
gcc-824229e38662b5921e156d0fcbd7180462ba9d60.tar.bz2
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 <chenyangyu@isrc.iscas.ac.cn>
-rw-r--r--gcc/hosthooks.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/hosthooks.h b/gcc/hosthooks.h
index 5336380..8178c9c 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 */