aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKito Cheng <kito.cheng@sifive.com>2023-10-02 10:50:42 +0800
committerKito Cheng <kito.cheng@sifive.com>2023-10-04 21:37:40 +0800
commit027a94cf32be0b53d163e252e3c9e4800ad8f5f4 (patch)
tree817984ee49575eb77edc2b8de205fa02891b48b9 /gcc
parent75e3773b7094409c722c732beea28fa7e16d74dd (diff)
downloadgcc-027a94cf32be0b53d163e252e3c9e4800ad8f5f4.zip
gcc-027a94cf32be0b53d163e252e3c9e4800ad8f5f4.tar.gz
gcc-027a94cf32be0b53d163e252e3c9e4800ad8f5f4.tar.bz2
options: Prevent multidimensional arrays [PR111664]
Multidimensional arrary is gawk extension, and we accidentally introduced that in recent commit[1]. [1] https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=e4a4b8e983bac865eb435b11798e38d633b98942 gcc/ChangeLog: PR bootstrap/111664 * opt-read.awk: Drop multidimensional arrays. * opth-gen.awk: Ditto.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/opt-read.awk4
-rw-r--r--gcc/opth-gen.awk8
2 files changed, 6 insertions, 6 deletions
diff --git a/gcc/opt-read.awk b/gcc/opt-read.awk
index fcf9285..f74d847 100644
--- a/gcc/opt-read.awk
+++ b/gcc/opt-read.awk
@@ -123,7 +123,7 @@ BEGIN {
}
else {
target_var = opt_args("Var", $0)
- if (target_var)
+ if (target_var)
{
target_var = opt_args("Var", $1)
var_index = find_index(target_var, target_vars, n_target_vars)
@@ -131,7 +131,7 @@ BEGIN {
{
target_vars[n_target_vars++] = target_var
}
- other_masks[var_index][n_other_mask[var_index]++] = name
+ other_masks[var_index "," n_other_mask[var_index]++] = name
}
else
{
diff --git a/gcc/opth-gen.awk b/gcc/opth-gen.awk
index 70ca3d3..c4398be 100644
--- a/gcc/opth-gen.awk
+++ b/gcc/opth-gen.awk
@@ -412,9 +412,9 @@ for (i = 0; i < n_target_vars; i++)
continue
for (j = 0; j < n_other_mask[i]; j++)
{
- print "#define MASK_" other_masks[i][j] " (1U << " other_masknum[i][""]++ ")"
+ print "#define MASK_" other_masks[i "," j] " (1U << " other_masknum[i]++ ")"
}
- if (other_masknum[i][""] > 32)
+ if (other_masknum[i] > 32)
print "#error too many target masks for" extra_target_vars[i]
}
@@ -437,8 +437,8 @@ for (i = 0; i < n_target_vars; i++)
continue
for (j = 0; j < n_other_mask[i]; j++)
{
- print "#define TARGET_" other_masks[i][j] \
- " ((" target_vars[i] " & MASK_" other_masks[i][j] ") != 0)"
+ print "#define TARGET_" other_masks[i "," j] \
+ " ((" target_vars[i] " & MASK_" other_masks[i "," j] ") != 0)"
}
}
print ""