Commit acc15f57 by Richard Stallman

(mips_debugger_offset): Don't crash for unknown cases.

From-SVN: r2810
parent 30de5e95
......@@ -3003,8 +3003,11 @@ mips_debugger_offset (addr, offset)
offset = offset - frame_size;
}
/* sdbout_parms does not want this to crash for unrecognized cases. */
#if 0
else if (reg != arg_pointer_rtx)
abort_with_insn (addr, "mips_debugger_offset called with non stack/frame/arg pointer.");
#endif
return offset;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment