9front - general discussion about 9front
 help / color / mirror / Atom feed
From: mia soweli <inbox@tachibana-labs.org>
To: 9front@9front.org
Subject: [9front] [PATCH] cc: support const and restrict inside array declarations
Date: Sat, 13 May 2023 23:31:45 +0000	[thread overview]
Message-ID: <ZGAd4S2sAhvK8lSJ@one.net.tachibana-labs.org> (raw)

this allows c23 style array declarations (see c23 draft section 6.7.6),
with type qualifiers inside the brackets.
for example:

	const int list[restrict 4];
	int list[const 4];
	int list[const restrict 4];
	int list[volatile 4];
	int list[noret 4]; /* we may not want to allow this */

they are ignored as with other uses of const, restrict, and volatile.
it does not allow

	int list[static 4];

which is also allowed in c23.

diff 090af6255bebf0129c891116b53b31808fe49dc7 uncommitted
--- a/sys/src/cmd/cc/cc.y
+++ b/sys/src/cmd/cc/cc.y
@@ -142,9 +142,9 @@
 	{
 		$$ = new(OFUNC, $1, $3);
 	}
-|	xdecor2 '[' zexpr ']'
+|	xdecor2 '[' zgnlist zexpr ']'
 	{
-		$$ = new(OARRAY, $1, $3);
+		$$ = new(OARRAY, $1, $4);
 	}
 
 /*
@@ -273,9 +273,9 @@
 	{
 		$$ = new(OFUNC, $1, $3);
 	}
-|	abdecor2 '[' zexpr ']'
+|	abdecor2 '[' zgnlist zexpr ']'
 	{
-		$$ = new(OARRAY, $1, $3);
+		$$ = new(OARRAY, $1, $4);
 	}
 
 abdecor3:
@@ -283,9 +283,9 @@
 	{
 		$$ = new(OFUNC, (Z), Z);
 	}
-|	'[' zexpr ']'
+|	'[' zgnlist zexpr ']'
 	{
-		$$ = new(OARRAY, (Z), $2);
+		$$ = new(OARRAY, (Z), $3);
 	}
 |	'(' abdecor1 ')'
 	{


             reply	other threads:[~2023-05-13 23:36 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-13 23:31 mia soweli [this message]
2023-05-14  5:25 ` ori
2023-05-14 10:20   ` [9front] " mia soweli
2023-05-14  8:10 ` Michael Forney
2023-05-14 10:23   ` [9front] " mia soweli
2023-05-14 11:10 ` [9front] [PATCH] cc: support type qualifiers inside array brackets mia soweli
2023-05-15  7:39   ` [9front] " mia soweli
2023-05-15 12:51     ` ori
2023-05-15 14:05       ` [9front] " mia soweli

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ZGAd4S2sAhvK8lSJ@one.net.tachibana-labs.org \
    --to=inbox@tachibana-labs.org \
    --cc=9front@9front.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 NNTP newsgroup(s).