2002-05-22 Michal Ludvig <mludvig@suse.cz>
* dwarf2cfi.c (execute_stack_op): Change type of 'result' from ULONGEST to CORE_ADDR.
This commit is contained in:
parent
426e6456c0
commit
6c3eb89063
@ -5,6 +5,8 @@
|
|||||||
(dwarf2_build_frame_info): Corrected handling of eh_frame.
|
(dwarf2_build_frame_info): Corrected handling of eh_frame.
|
||||||
(dwarf2_build_frame_info): Add offset to fde->initial_location
|
(dwarf2_build_frame_info): Add offset to fde->initial_location
|
||||||
so that frames of shared libraries are mapped correctly.
|
so that frames of shared libraries are mapped correctly.
|
||||||
|
(execute_stack_op): Change type of 'result' from ULONGEST to
|
||||||
|
CORE_ADDR.
|
||||||
|
|
||||||
2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
|
2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
|
||||||
|
|
||||||
|
@ -875,7 +875,8 @@ execute_stack_op (struct objfile *objfile,
|
|||||||
while (op_ptr < op_end)
|
while (op_ptr < op_end)
|
||||||
{
|
{
|
||||||
enum dwarf_location_atom op = *op_ptr++;
|
enum dwarf_location_atom op = *op_ptr++;
|
||||||
ULONGEST result, reg;
|
CORE_ADDR result;
|
||||||
|
ULONGEST reg;
|
||||||
LONGEST offset;
|
LONGEST offset;
|
||||||
|
|
||||||
switch (op)
|
switch (op)
|
||||||
|
Loading…
Reference in New Issue
Block a user