public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-4395] options: Prevent multidimensional arrays [PR111664]
@ 2023-10-04 13:38 Kito Cheng
  0 siblings, 0 replies; only message in thread
From: Kito Cheng @ 2023-10-04 13:38 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:027a94cf32be0b53d163e252e3c9e4800ad8f5f4

commit r14-4395-g027a94cf32be0b53d163e252e3c9e4800ad8f5f4
Author: Kito Cheng <kito.cheng@sifive.com>
Date:   Mon Oct 2 10:50:42 2023 +0800

    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.

Diff:
---
 gcc/opt-read.awk | 4 ++--
 gcc/opth-gen.awk | 8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/gcc/opt-read.awk b/gcc/opt-read.awk
index fcf92853957..f74d8478f72 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 70ca3d37719..c4398be2f3a 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 ""

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-10-04 13:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-04 13:38 [gcc r14-4395] options: Prevent multidimensional arrays [PR111664] Kito Cheng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).