* gdb/arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
register as a stack alignment in ARM mode.
+2012-06-25 Greta Yorsh <greta.yorsh@arm.com>
+
+ * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
+ register as a stack alignment in ARM mode.
+
2012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e.
else if ((insn & 0x0fff0000) == 0x08bd0000)
/* POP (LDMIA). */
found_stack_adjust = 1;
+ else if ((insn & 0x0fff0000) == 0x049d0000)
+ /* POP of a single register. */
+ found_stack_adjust = 1;
}
if (found_stack_adjust)