Fix the build when GNU Source Highlight is not available

The builder pointed out that, when GNU Source Highlight is not
available, get_language_name is not used.  This patch makes it
conditional, fixing the build problem.

gdb/ChangeLog
2018-12-28  Tom Tromey  <tom@tromey.com>

	* source-cache.c (get_language_name): Conditionally compile.
This commit is contained in:
Tom Tromey 2018-12-28 21:07:24 -07:00
parent f9f981e5f6
commit 64c45143db
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2018-12-28 Tom Tromey <tom@tromey.com>
* source-cache.c (get_language_name): Conditionally compile.
2018-12-28 Tom Tromey <tom@tromey.com>
* jit.c (free_objfile_data): Only delete breakpoint if non-null.

View File

@ -108,6 +108,8 @@ source_cache::extract_lines (const struct source_text &text, int first_line,
return false;
}
#ifdef HAVE_SOURCE_HIGHLIGHT
/* Return the Source Highlight language name, given a gdb language
LANG. Returns NULL if the language is not known. */
@ -160,6 +162,8 @@ get_language_name (enum language lang)
return nullptr;
}
#endif /* HAVE_SOURCE_HIGHLIGHT */
/* See source-cache.h. */
bool