input: rename get_source to get_source_text_between

Let's use a more informative name.

gcc/ChangeLog:

	* input.h:
	* input.cc (get_source):
	Rename to get_source_text_between.

gcc/cp/ChangeLog:

	* contracts.cc (build_comment): Adjust.
This commit is contained in:
Jason Merrill 2022-11-03 15:44:25 -04:00
parent e378b7f825
commit 7dbd1db4df
3 changed files with 6 additions and 4 deletions

View File

@ -723,7 +723,8 @@ build_comment (cp_expr condition)
{
/* Try to get the actual source text for the condition; if that fails pretty
print the resulting tree. */
char *str = get_source (condition.get_start (), condition.get_finish ());
char *str = get_source_text_between (condition.get_start (),
condition.get_finish ());
if (!str)
{
/* FIXME cases where we end up here

View File

@ -949,10 +949,11 @@ location_get_source_line (const char *file_path, int line)
return char_span (buffer, len);
}
/* Return the source text between two locations. */
/* Return a copy of the source text between two locations. The caller is
responsible for freeing the return value. */
char *
get_source (location_t start, location_t end)
get_source_text_between (location_t start, location_t end)
{
expanded_location expstart =
expand_location_to_spelling_point (start, LOCATION_ASPECT_START);

View File

@ -111,7 +111,7 @@ class char_span
};
extern char_span location_get_source_line (const char *file_path, int line);
extern char *get_source (location_t, location_t);
extern char *get_source_text_between (location_t, location_t);
extern bool location_missing_trailing_newline (const char *file_path);