diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/varobj.c | 9 |
2 files changed, 5 insertions, 9 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9a77ebb..ad7c8b2 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2013-10-01 Yao Qi <yao@codesourcery.com> + * varobj.c (struct language_specific) <language>: Remove. + (languages): Update the initialization. + +2013-10-01 Yao Qi <yao@codesourcery.com> + * arm-wince-tdep.c: Remove inclusion of "solib.h" and "solib-target.h". Include "windows-tdep.h". (arm_wince_init_abi): Call windows_init_abi. Remove call to diff --git a/gdb/varobj.c b/gdb/varobj.c index ced3e2d..f613b1b 100644 --- a/gdb/varobj.c +++ b/gdb/varobj.c @@ -398,10 +398,6 @@ static int ada_value_has_mutated (struct varobj *var, struct value *new_val, struct language_specific { - - /* The language of this variable. */ - enum varobj_languages language; - /* The number of children of PARENT. */ int (*number_of_children) (struct varobj * parent); @@ -458,7 +454,6 @@ struct language_specific static struct language_specific languages[vlang_end] = { /* Unknown (try treating as C). */ { - vlang_unknown, c_number_of_children, c_name_of_variable, c_name_of_child, @@ -472,7 +467,6 @@ static struct language_specific languages[vlang_end] = { , /* C */ { - vlang_c, c_number_of_children, c_name_of_variable, c_name_of_child, @@ -486,7 +480,6 @@ static struct language_specific languages[vlang_end] = { , /* C++ */ { - vlang_cplus, cplus_number_of_children, cplus_name_of_variable, cplus_name_of_child, @@ -500,7 +493,6 @@ static struct language_specific languages[vlang_end] = { , /* Java */ { - vlang_java, java_number_of_children, java_name_of_variable, java_name_of_child, @@ -513,7 +505,6 @@ static struct language_specific languages[vlang_end] = { NULL /* value_has_mutated */}, /* Ada */ { - vlang_ada, ada_number_of_children, ada_name_of_variable, ada_name_of_child, |