* a29k-tdep.c (push_dummy_frame): Add comment about saving lr0.

This commit is contained in:
Jim Kingdon
1994-01-13 15:38:00 +00:00
parent fca59f9d42
commit ae682b8061
2 changed files with 7 additions and 0 deletions

View File

@@ -845,6 +845,9 @@ push_dummy_frame ()
write_register (lrnum++, read_register (PC_REGNUM));
write_register (lrnum++, read_register (NPC_REGNUM));
write_register (lrnum++, read_register (PC2_REGNUM));
/* Why are we saving LR0? What would clobber it? (the dummy frame should
be below it on the register stack, no?). */
write_register (lrnum++, original_lr0);
}