forked from Imagelibrary/binutils-gdb
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user