diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2022-02-03 21:12:21 +0100 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2022-02-03 21:14:10 +0100 |
commit | 7eef766dc5a8abda2ca2cf8d535cdf160f40b50c (patch) | |
tree | f85ed9010c56dc8f250d7cba5761b4eae58f2a42 /gcc/langhooks.h | |
parent | 5199ecb8519c4c5f92160365cefe8e0aa1ca3873 (diff) | |
parent | ff7aeceb6b3a476c3bac66a7f39a5ef4240206fc (diff) | |
download | gcc-7eef766dc5a8abda2ca2cf8d535cdf160f40b50c.zip gcc-7eef766dc5a8abda2ca2cf8d535cdf160f40b50c.tar.gz gcc-7eef766dc5a8abda2ca2cf8d535cdf160f40b50c.tar.bz2 |
Merge commit 'ff7aeceb6b3a476c3bac66a7f39a5ef4240206fc' [#247, #906]
Diffstat (limited to 'gcc/langhooks.h')
-rw-r--r-- | gcc/langhooks.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/langhooks.h b/gcc/langhooks.h index 4306a09..0eec1b0 100644 --- a/gcc/langhooks.h +++ b/gcc/langhooks.h @@ -36,7 +36,7 @@ enum classify_record class substring_loc; -/* The following hooks are documented in langhooks.c. Must not be +/* The following hooks are documented in langhooks.cc. Must not be NULL. */ struct lang_hooks_for_tree_inlining @@ -44,7 +44,7 @@ struct lang_hooks_for_tree_inlining bool (*var_mod_type_p) (tree, tree); }; -/* The following hooks are used by tree-dump.c. */ +/* The following hooks are used by tree-dump.cc. */ struct lang_hooks_for_tree_dump { @@ -113,7 +113,7 @@ struct lang_hooks_for_types in C. The default hook ignores the declaration. */ void (*register_builtin_type) (tree, const char *); - /* This routine is called in tree.c to print an error message for + /* This routine is called in tree.cc to print an error message for invalid use of an incomplete type. VALUE is the expression that was used (or 0 if that isn't known) and TYPE is the type that was invalid. LOC is the location of the use. */ @@ -166,7 +166,7 @@ struct lang_hooks_for_types /* Returns the tree that represents the underlying data type used to implement the enumeration. The default implementation will just use - type_for_size. Used in dwarf2out.c to add a DW_AT_type base type + type_for_size. Used in dwarf2out.cc to add a DW_AT_type base type reference to a DW_TAG_enumeration. */ tree (*enum_underlying_base_type) (const_tree); @@ -521,7 +521,7 @@ struct lang_hooks HOST_WIDE_INT (*to_target_charset) (HOST_WIDE_INT); /* Pointers to machine-independent attribute tables, for front ends - using attribs.c. If one is NULL, it is ignored. Respectively, a + using attribs.cc. If one is NULL, it is ignored. Respectively, a table of attributes specific to the language, a table of attributes common to two or more languages (to allow easy sharing), and a table of attributes for checking formats. */ @@ -631,7 +631,7 @@ struct lang_hooks void (*finalize_early_debug) (void); /* Whenever you add entries here, make sure you adjust langhooks-def.h - and langhooks.c accordingly. */ + and langhooks.cc accordingly. */ }; /* Each front end provides its own. */ |