2011-02-28 Michael Snyder <msnyder@vmware.com>

* eval.c (evaluate_subexp_standard): Delete unused variable,
	and discard unused values.
This commit is contained in:
Michael Snyder 2011-02-28 23:47:39 +00:00
parent df983543b9
commit 262acaeb48
2 changed files with 8 additions and 6 deletions

View File

@ -1,5 +1,8 @@
2011-02-28 Michael Snyder <msnyder@vmware.com>
* eval.c (evaluate_subexp_standard): Delete unused variable,
and discard unused values.
* infcmd.c (_initialize_infcmd): Discard unused values.
* stabsread.c (rs6000_builtin_type): Missing break statement.

View File

@ -1326,13 +1326,12 @@ evaluate_subexp_standard (struct type *expect_type,
if (method)
{
struct block *b;
CORE_ADDR funaddr;
struct type *val_type;
funaddr = find_function_addr (method, &val_type);
b = block_for_pc (funaddr);
block_for_pc (funaddr);
CHECK_TYPEDEF (val_type);
@ -2233,8 +2232,8 @@ evaluate_subexp_standard (struct type *expect_type,
}
case BINOP_RANGE:
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
evaluate_subexp (NULL_TYPE, exp, pos, noside);
evaluate_subexp (NULL_TYPE, exp, pos, noside);
if (noside == EVAL_SKIP)
goto nosideret;
error (_("':' operator used in invalid context"));
@ -2399,7 +2398,7 @@ evaluate_subexp_standard (struct type *expect_type,
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
if (noside == EVAL_SKIP)
{
arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
evaluate_subexp (NULL_TYPE, exp, pos, noside);
goto nosideret;
}
@ -2426,7 +2425,7 @@ evaluate_subexp_standard (struct type *expect_type,
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
if (noside == EVAL_SKIP)
{
arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
evaluate_subexp (NULL_TYPE, exp, pos, noside);
goto nosideret;
}