Fix Python access to inlined frames.
	* python/py-frame.c (frapy_read_var): Find BLOCK using get_frame_block.
	* python/py-symbol.c (gdbpy_lookup_symbol): Likewise.

gdb/testsuite/
	Fix Python access to inlined frames.
	* gdb.python/py-frame-inline.c: New file.
	* gdb.python/py-frame-inline.exp: New file.
This commit is contained in:
Jan Kratochvil 2011-04-17 14:14:23 +00:00
parent 45bbae5e3c
commit 626e728214
6 changed files with 97 additions and 3 deletions

View file

@ -436,7 +436,7 @@ frapy_read_var (PyObject *self, PyObject *args)
FRAPY_REQUIRE_VALID ((frame_object *) self, frame);
if (!block)
block = block_for_pc (get_frame_address_in_block (frame));
block = get_frame_block (frame, NULL);
var = lookup_symbol (var_name, block, VAR_DOMAIN, NULL);
}
GDB_PY_HANDLE_EXCEPTION (except);