PR python/19819 - remove unused globals from py-xmethods.c
PR python/19819 concerns some unused global variables in py-xmethods.c. This patch deletes the unused globals. Tested by rebuilding. 2016-06-09 Tom Tromey <tom@tromey.com> PR python/19819: * python/py-xmethods.c (invoke_method_name) (py_get_result_type_method_name, py_invoke_method_name): Remove. (gdbpy_initialize_xmethods): Don't initialize py_invoke_method_name, py_get_result_type_method_name.
This commit is contained in:
parent
a080d84da0
commit
4dee35314b
2 changed files with 8 additions and 12 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2016-06-09 Tom Tromey <tom@tromey.com>
|
||||||
|
|
||||||
|
PR python/19819:
|
||||||
|
* python/py-xmethods.c (invoke_method_name)
|
||||||
|
(py_get_result_type_method_name, py_invoke_method_name): Remove.
|
||||||
|
(gdbpy_initialize_xmethods): Don't initialize
|
||||||
|
py_invoke_method_name, py_get_result_type_method_name.
|
||||||
|
|
||||||
2016-06-07 Simon Marchi <simon.marchi@ericsson.com>
|
2016-06-07 Simon Marchi <simon.marchi@ericsson.com>
|
||||||
|
|
||||||
* mi/mi-interp.c (mi_record_changed): Add missing braces.
|
* mi/mi-interp.c (mi_record_changed): Add missing braces.
|
||||||
|
|
|
@ -31,13 +31,10 @@ static const char enabled_field_name[] = "enabled";
|
||||||
static const char match_method_name[] = "match";
|
static const char match_method_name[] = "match";
|
||||||
static const char get_arg_types_method_name[] = "get_arg_types";
|
static const char get_arg_types_method_name[] = "get_arg_types";
|
||||||
static const char get_result_type_method_name[] = "get_result_type";
|
static const char get_result_type_method_name[] = "get_result_type";
|
||||||
static const char invoke_method_name[] = "invoke";
|
|
||||||
static const char matchers_attr_str[] = "xmethods";
|
static const char matchers_attr_str[] = "xmethods";
|
||||||
|
|
||||||
static PyObject *py_match_method_name = NULL;
|
static PyObject *py_match_method_name = NULL;
|
||||||
static PyObject *py_get_arg_types_method_name = NULL;
|
static PyObject *py_get_arg_types_method_name = NULL;
|
||||||
static PyObject *py_get_result_type_method_name = NULL;
|
|
||||||
static PyObject *py_invoke_method_name = NULL;
|
|
||||||
|
|
||||||
struct gdbpy_worker_data
|
struct gdbpy_worker_data
|
||||||
{
|
{
|
||||||
|
@ -735,19 +732,10 @@ gdbpy_initialize_xmethods (void)
|
||||||
if (py_match_method_name == NULL)
|
if (py_match_method_name == NULL)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
py_invoke_method_name = PyString_FromString (invoke_method_name);
|
|
||||||
if (py_invoke_method_name == NULL)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
py_get_arg_types_method_name
|
py_get_arg_types_method_name
|
||||||
= PyString_FromString (get_arg_types_method_name);
|
= PyString_FromString (get_arg_types_method_name);
|
||||||
if (py_get_arg_types_method_name == NULL)
|
if (py_get_arg_types_method_name == NULL)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
py_get_result_type_method_name
|
|
||||||
= PyString_FromString (get_result_type_method_name);
|
|
||||||
if (py_get_result_type_method_name == NULL)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue