forked from Imagelibrary/rtems
ascii: Remove non-ASCII characters
We will soon be enforcing ASCII-only characters for source.
This commit is contained in:
committed by
Kinsey Moore
parent
7a4a42d23b
commit
b714e4a809
@@ -103,7 +103,7 @@ static bool ppc_exc_create_branch_op(
|
||||
* minimal prologues in a read-only area are relocatable.
|
||||
*/
|
||||
if ((branch_target_address & ~BRANCH_OP_MSK) != 0) {
|
||||
/* Target to far for relative branch (PC ± 32M) */
|
||||
/* Target to far for relative branch (PC +/- 32M) */
|
||||
if (target_address >= 0xfe000001 || target_address < 0x01fffffd) {
|
||||
/* Can use an absolute branch */
|
||||
branch_target_address = (target_address | BRANCH_OP_ABS) & BRANCH_OP_MSK;
|
||||
|
||||
Reference in New Issue
Block a user