diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2025-08-04 13:00:52 +1000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2025-08-11 23:25:08 +0000 |
commit | fb3be07b05e948c40a8676eac7fd029873470daa (patch) | |
tree | 12fb5b0f5548468640afe5781ff928889dc096cb /gcc | |
parent | 041248ca43beb158afae8350117378c98e9191ad (diff) | |
download | gcc-fb3be07b05e948c40a8676eac7fd029873470daa.zip gcc-fb3be07b05e948c40a8676eac7fd029873470daa.tar.gz gcc-fb3be07b05e948c40a8676eac7fd029873470daa.tar.bz2 |
aarch64: Fix spelling of BRANCH_LEN_N_1KiB
One kilobyte not one kilobit.
gcc:
* config/aarch64/aarch64.md (BRANCH_LEN_N_1KiB): Rename
from BRANCH_LEN_N_1Kib.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/aarch64/aarch64.md | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/config/aarch64/aarch64.md b/gcc/config/aarch64/aarch64.md index dc2be81..2d86a02 100644 --- a/gcc/config/aarch64/aarch64.md +++ b/gcc/config/aarch64/aarch64.md @@ -725,8 +725,8 @@ (BRANCH_LEN_N_32KiB -32768) ;; +/- 1KiB. Used by CBB<cond>, CBH<cond>, CB<cond>. - (BRANCH_LEN_P_1Kib 1020) - (BRANCH_LEN_N_1Kib -1024) + (BRANCH_LEN_P_1KiB 1020) + (BRANCH_LEN_N_1KiB -1024) ] ) @@ -898,16 +898,16 @@ [(set_attr "type" "branch") (set (attr "length") (if_then_else (and (ge (minus (match_dup 2) (pc)) - (const_int BRANCH_LEN_N_1Kib)) + (const_int BRANCH_LEN_N_1KiB)) (lt (minus (match_dup 2) (pc)) - (const_int BRANCH_LEN_P_1Kib))) + (const_int BRANCH_LEN_P_1KiB))) (const_int 4) (const_int 8))) (set (attr "far_branch") (if_then_else (and (ge (minus (match_dup 2) (pc)) - (const_int BRANCH_LEN_N_1Kib)) + (const_int BRANCH_LEN_N_1KiB)) (lt (minus (match_dup 2) (pc)) - (const_int BRANCH_LEN_P_1Kib))) + (const_int BRANCH_LEN_P_1KiB))) (const_string "no") (const_string "yes")))] ) @@ -929,16 +929,16 @@ [(set_attr "type" "branch") (set (attr "length") (if_then_else (and (ge (minus (match_dup 2) (pc)) - (const_int BRANCH_LEN_N_1Kib)) + (const_int BRANCH_LEN_N_1KiB)) (lt (minus (match_dup 2) (pc)) - (const_int BRANCH_LEN_P_1Kib))) + (const_int BRANCH_LEN_P_1KiB))) (const_int 4) (const_int 8))) (set (attr "far_branch") (if_then_else (and (ge (minus (match_dup 2) (pc)) - (const_int BRANCH_LEN_N_1Kib)) + (const_int BRANCH_LEN_N_1KiB)) (lt (minus (match_dup 2) (pc)) - (const_int BRANCH_LEN_P_1Kib))) + (const_int BRANCH_LEN_P_1KiB))) (const_string "no") (const_string "yes")))] ) |