* eval.c (evaluate_subexp_standard) <OP_OBJC_MSGCALL>: Remove

'static' from local variable definitions.
This commit is contained in:
Tom Tromey 2009-06-11 16:49:47 +00:00
parent 828cd292ea
commit 17dd65ce9a
2 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2009-06-11 Tom Tromey <tromey@redhat.com>
* eval.c (evaluate_subexp_standard) <OP_OBJC_MSGCALL>: Remove
'static' from local variable definitions.
2009-06-11 Pedro Alves <pedro@codesourcery.com>
* symtab.c (append_expanded_sal): Remove unused local variables.

View File

@ -1016,17 +1016,17 @@ evaluate_subexp_standard (struct type *expect_type,
case OP_OBJC_MSGCALL:
{ /* Objective C message (method) call. */
static CORE_ADDR responds_selector = 0;
static CORE_ADDR method_selector = 0;
CORE_ADDR responds_selector = 0;
CORE_ADDR method_selector = 0;
CORE_ADDR selector = 0;
int struct_return = 0;
int sub_no_side = 0;
static struct value *msg_send = NULL;
static struct value *msg_send_stret = NULL;
static int gnu_runtime = 0;
struct value *msg_send = NULL;
struct value *msg_send_stret = NULL;
int gnu_runtime = 0;
struct value *target = NULL;
struct value *method = NULL;