1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-27 00:29:31 +00:00

Warn for braces around a pointer initializer.

This commit is contained in:
Kugel Fuhr 2024-09-08 09:11:47 +02:00
parent 5e5dd1d6c4
commit 3c5269dede
3 changed files with 11 additions and 0 deletions

View File

@ -302,6 +302,13 @@ static unsigned ParsePointerInit (const Type* T)
/* Optional opening brace */
unsigned BraceCount = OpeningCurlyBraces (0);
/* We warn if an initializer for a scalar contains braces, because this is
** quite unusual and often a sign for some problem in the input.
*/
if (BraceCount > 0) {
Warning ("Braces around scalar initializer");
}
/* Expression */
ExprDesc ED = NoCodeConstExpr (hie1);
TypeConversion (&ED, T);

2
test/ref/bug2134.c Normal file
View File

@ -0,0 +1,2 @@
int i = { 0 };
char* p = { 0 };

2
test/ref/bug2134.cref Normal file
View File

@ -0,0 +1,2 @@
bug2134.c:1: Warning: Braces around scalar initializer
bug2134.c:2: Warning: Braces around scalar initializer