Commit d66230e7 by Richard Kenner

(arm_backwards_branch): Branching to the current insn is a backwards

branch.

From-SVN: r6147
parent f5775325
......@@ -788,7 +788,7 @@ int
arm_backwards_branch (from, to)
int from, to;
{
return (insn_addresses[to] < insn_addresses[from]);
return (insn_addresses[to] <= insn_addresses[from]);
}
/* Check to see if a branch is within the distance that can be done using
......
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