mirror of
https://github.com/cc65/cc65.git
synced 2025-03-20 14:29:57 +00:00
Merge pull request #2512 from kugelfuhr/kugelfuhr/fix-2134
Warn for braces around a pointer initializer
This commit is contained in:
commit
38038fd0d3
@ -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);
|
||||
|
3
test/ref/bug2134.c
Normal file
3
test/ref/bug2134.c
Normal file
@ -0,0 +1,3 @@
|
||||
int i = { 0 };
|
||||
char* p = { 0 };
|
||||
int main() { return 0; }
|
2
test/ref/bug2134.cref
Normal file
2
test/ref/bug2134.cref
Normal file
@ -0,0 +1,2 @@
|
||||
bug2134.c:1: Warning: Braces around scalar initializer
|
||||
bug2134.c:2: Warning: Braces around scalar initializer
|
Loading…
x
Reference in New Issue
Block a user