ascii: Remove non-ASCII characters

We will soon be enforcing ASCII-only characters for source.
This commit is contained in:
Amar Takhar
2025-05-21 20:10:35 -04:00
committed by Kinsey Moore
parent 7a4a42d23b
commit b714e4a809
35 changed files with 40 additions and 40 deletions

View File

@@ -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;