* mn10300-prologue.c (set_movm_offsets): Don't test variable
before setting it.
* mn10300-tdep.c (mn10300_skip_prologue): Use analyze_prologue
instead of skip_prologue_using_sal.
+2005-04-01 Michael Snyder <msnyder@redhat.com>
+
+ * mn10300-prologue.c (set_movm_offsets): Don't test variable
+ before setting it.
+ * mn10300-tdep.c (mn10300_skip_prologue): Use analyze_prologue
+ instead of skip_prologue_using_sal.
+
2005-03-31 Kevin Buettner <kevinb@redhat.com>
* solib-frv.c (struct lm_info): Add new field ``lm_addr''.
int offset = 0;
CORE_ADDR base;
- if (cache == NULL || fi == NULL)
+ if (fi == NULL || this_cache == NULL)
return;
cache = mn10300_frame_unwind_cache (fi, this_cache);
+ if (cache == NULL)
+ return;
+
base = trad_frame_get_this_base (cache);
if (movm_args & movm_other_bit)
{
static CORE_ADDR
mn10300_skip_prologue (CORE_ADDR pc)
{
+#if 0
+ CORE_ADDR ret;
/* FIXME: not implemented. */
/* First approximation, try simply using skip_prologue_using_sal. */
- return skip_prologue_using_sal (pc);
+ ret = skip_prologue_using_sal (pc);
+ return ret ? ret : pc;
+#else
+ return mn10300_analyze_prologue (NULL, NULL, pc);
+#endif
}
/* Simple frame_unwind_cache.