• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


Commit MetaInfo

Revisionc76fb5a27c1ecb9d8b7a69f9126204681aa0d356 (tree)
Time2004-03-11 05:06:08
AuthorJoel Brobecker <brobecker@gnat...>
CommiterJoel Brobecker

Log Message

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

Change Summary

Incremental Difference

--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -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+
15 2004-03-10 Kei Sakamoto <sakamoto.kei@renesas.com>
26
37 * remote-m32r-sdi.c: Support hardware watchpoint.
--- a/gdb/hppa-tdep.c
+++ b/gdb/hppa-tdep.c
@@ -4617,7 +4617,7 @@ hppa_frame_cache (struct frame_info *next_frame, void **this_cache)
46174617 /* Yow! */
46184618 u = find_unwind_entry (frame_func_unwind (next_frame));
46194619 if (!u)
4620- return;
4620+ return (*this_cache);
46214621
46224622 /* Turn the Entry_GR field into a bitmask. */
46234623 saved_gr_mask = 0;