2002-05-22 Michal Ludvig <mludvig@suse.cz>
authorMichal Ludvig <mludvig@suse.cz>
Wed, 22 May 2002 13:21:19 +0000 (13:21 +0000)
committerMichal Ludvig <mludvig@suse.cz>
Wed, 22 May 2002 13:21:19 +0000 (13:21 +0000)
* dwarf2cfi.c (execute_stack_op): Change type of 'result'
from ULONGEST to CORE_ADDR.

gdb/ChangeLog
gdb/dwarf2cfi.c

index b4e1a7b757406d26605c1717609d6874687d590a..5aac74ab45457d7fd50d1283064b2e0e678f9e53 100644 (file)
@@ -5,6 +5,8 @@
        (dwarf2_build_frame_info): Corrected handling of eh_frame.
        (dwarf2_build_frame_info): Add offset to fde->initial_location 
        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>
 
index e7524f6aa3927cbb88cd090f632d7dd44fb96465..783d1c014e0eea20efa3cbe314e8d4097edddfad 100644 (file)
@@ -875,7 +875,8 @@ execute_stack_op (struct objfile *objfile,
   while (op_ptr < op_end)
     {
       enum dwarf_location_atom op = *op_ptr++;
-      ULONGEST result, reg;
+      CORE_ADDR result;
+      ULONGEST reg;
       LONGEST offset;
 
       switch (op)