2002-10-23 David Carlton <carlton@math.stanford.edu>

* parse.c (parse_exp_1): Use BLOCK_START.
	* x86-64-tdep.c (x86_64_skip_prologue): Use BLOCK_END,
	SYMBOL_BLOCK_VALUE.
	* objc-lang.c (find_methods): Use BLOCK_START, BLOCK_END.
This commit is contained in:
David Carlton 2002-10-23 23:37:33 +00:00
parent 87f2f08c7f
commit 8da065d53c
4 changed files with 11 additions and 4 deletions

View file

@ -1123,7 +1123,7 @@ parse_exp_1 (char **stringptr, struct block *block, int comma)
if (block)
{
expression_context_block = block;
expression_context_pc = block->startaddr;
expression_context_pc = BLOCK_START (block);
}
else
expression_context_block = get_selected_block (&expression_context_pc);