GNU Binutils with patches for OS216
Revision | c76fb5a27c1ecb9d8b7a69f9126204681aa0d356 (tree) |
---|---|
Time | 2004-03-11 05:06:08 |
Author | Joel Brobecker <brobecker@gnat...> |
Commiter | Joel Brobecker |
@@ -1,3 +1,7 @@ | ||
1 | +2004-03-10 J. Brobecker <brobecker@gnat.com> | |
2 | + | |
3 | + * hppa-tdep.c (hppa_frame_cache): Avoid undefined return value. | |
4 | + | |
1 | 5 | 2004-03-10 Kei Sakamoto <sakamoto.kei@renesas.com> |
2 | 6 | |
3 | 7 | * remote-m32r-sdi.c: Support hardware watchpoint. |
@@ -4617,7 +4617,7 @@ hppa_frame_cache (struct frame_info *next_frame, void **this_cache) | ||
4617 | 4617 | /* Yow! */ |
4618 | 4618 | u = find_unwind_entry (frame_func_unwind (next_frame)); |
4619 | 4619 | if (!u) |
4620 | - return; | |
4620 | + return (*this_cache); | |
4621 | 4621 | |
4622 | 4622 | /* Turn the Entry_GR field into a bitmask. */ |
4623 | 4623 | saved_gr_mask = 0; |