ARI fix: OP eol rule.

* ada-exp.y (block_lookup): Avoid operator at end of line.
	* aix-thread.c (pd_enable): Idem.
	* alpha-tdep.c (alpha_next_pc): Idem.
	* arm-tdep.c (arm_skip_prologue, arm_scan_prologue): Idem.
	(condition_true, coff_sym_is_thumb): Idem.
This commit is contained in:
Pierre Muller
2009-10-06 21:27:59 +00:00
parent e99daf92c2
commit f8bf576366
5 changed files with 38 additions and 27 deletions

View File

@@ -1390,8 +1390,8 @@ alpha_next_pc (struct frame_info *frame, CORE_ADDR pc)
{
/* Branch format: target PC is:
(new PC) + (4 * sext(displacement)) */
if (op == 0x30 || /* BR */
op == 0x34) /* BSR */
if (op == 0x30 /* BR */
|| op == 0x34) /* BSR */
{
branch_taken:
offset = (insn & 0x001fffff);