mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-29 02:14:23 +08:00
gdb/
* varobj.c (varobj_format_string): Remove "unknown". (languages): Remove the first element. * varobj.h (enum varobj_languages): Remove vlang_c.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2013-10-01 Yao Qi <yao@codesourcery.com>
|
||||||
|
|
||||||
|
* varobj.c (varobj_format_string): Remove "unknown".
|
||||||
|
(languages): Remove the first element.
|
||||||
|
* varobj.h (enum varobj_languages): Remove vlang_c.
|
||||||
|
|
||||||
2013-10-01 Yao Qi <yao@codesourcery.com>
|
2013-10-01 Yao Qi <yao@codesourcery.com>
|
||||||
|
|
||||||
* varobj.c (struct language_specific) <language>: Remove.
|
* varobj.c (struct language_specific) <language>: Remove.
|
||||||
|
15
gdb/varobj.c
15
gdb/varobj.c
@ -62,7 +62,7 @@ char *varobj_format_string[] =
|
|||||||
{ "natural", "binary", "decimal", "hexadecimal", "octal" };
|
{ "natural", "binary", "decimal", "hexadecimal", "octal" };
|
||||||
|
|
||||||
/* String representations of gdb's known languages. */
|
/* String representations of gdb's known languages. */
|
||||||
char *varobj_language_string[] = { "unknown", "C", "C++", "Java" };
|
char *varobj_language_string[] = { "C", "C++", "Java" };
|
||||||
|
|
||||||
/* True if we want to allow Python-based pretty-printing. */
|
/* True if we want to allow Python-based pretty-printing. */
|
||||||
static int pretty_printing = 0;
|
static int pretty_printing = 0;
|
||||||
@ -452,19 +452,6 @@ struct language_specific
|
|||||||
|
|
||||||
/* Array of known source language routines. */
|
/* Array of known source language routines. */
|
||||||
static struct language_specific languages[vlang_end] = {
|
static struct language_specific languages[vlang_end] = {
|
||||||
/* Unknown (try treating as C). */
|
|
||||||
{
|
|
||||||
c_number_of_children,
|
|
||||||
c_name_of_variable,
|
|
||||||
c_name_of_child,
|
|
||||||
c_path_expr_of_child,
|
|
||||||
c_value_of_root,
|
|
||||||
c_value_of_child,
|
|
||||||
c_type_of_child,
|
|
||||||
c_value_of_variable,
|
|
||||||
default_value_is_changeable_p,
|
|
||||||
NULL /* value_has_mutated */}
|
|
||||||
,
|
|
||||||
/* C */
|
/* C */
|
||||||
{
|
{
|
||||||
c_number_of_children,
|
c_number_of_children,
|
||||||
|
@ -55,7 +55,7 @@ extern char *varobj_format_string[];
|
|||||||
/* Languages supported by this variable objects system. */
|
/* Languages supported by this variable objects system. */
|
||||||
enum varobj_languages
|
enum varobj_languages
|
||||||
{
|
{
|
||||||
vlang_unknown = 0, vlang_c, vlang_cplus, vlang_java, vlang_ada, vlang_end
|
vlang_c = 0, vlang_cplus, vlang_java, vlang_ada, vlang_end
|
||||||
};
|
};
|
||||||
|
|
||||||
/* String representations of gdb's known languages (defined in varobj.c). */
|
/* String representations of gdb's known languages (defined in varobj.c). */
|
||||||
|
Reference in New Issue
Block a user