* hppa-tdep.c (hppa_frame_cache): Avoid undefined return value.

This commit is contained in:
Joel Brobecker 2004-03-05 04:49:52 +00:00
parent 3a7fb99b71
commit 52b5e991ee
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-03-04 J. Brobecker <brobecker@gnat.com>
* hppa-tdep.c (hppa_frame_cache): Avoid undefined return value.
2004-03-04 Daniel Jacobowitz <drow@mvista.com>
* dwarf2read.c: Add comment describing memory lifetimes.

View File

@ -4617,7 +4617,7 @@ hppa_frame_cache (struct frame_info *next_frame, void **this_cache)
/* Yow! */
u = find_unwind_entry (frame_func_unwind (next_frame));
if (!u)
return;
return (*this_cache);
/* Turn the Entry_GR field into a bitmask. */
saved_gr_mask = 0;