From 6c3eb89063d0db649eaecefe767b46d50fa91176 Mon Sep 17 00:00:00 2001 From: Michal Ludvig Date: Wed, 22 May 2002 13:21:19 +0000 Subject: [PATCH] 2002-05-22 Michal Ludvig * dwarf2cfi.c (execute_stack_op): Change type of 'result' from ULONGEST to CORE_ADDR. --- gdb/ChangeLog | 2 ++ gdb/dwarf2cfi.c | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b4e1a7b757..5aac74ab45 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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 diff --git a/gdb/dwarf2cfi.c b/gdb/dwarf2cfi.c index e7524f6aa3..783d1c014e 100644 --- a/gdb/dwarf2cfi.c +++ b/gdb/dwarf2cfi.c @@ -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)