]> git.sur5r.net Git - cc65/commitdiff
Revert "Disallow global variable declarations with an initializer."
authorPiotr Fusik <fox@scene.pl>
Wed, 15 Feb 2017 17:51:27 +0000 (18:51 +0100)
committerPiotr Fusik <fox@scene.pl>
Wed, 15 Feb 2017 17:51:27 +0000 (18:51 +0100)
This reverts commit 1f12a06f7cc2ae79a800fe3faed727513364091b.

src/cc65/compile.c

index 9cdeaf7e5cd7cf2342ec6e1c27b39f3bfb8619db..48a5c29d35adca95c566a0adf9f490b041ffbab9 100644 (file)
@@ -144,14 +144,17 @@ static void Parse (void)
             **
             **   - if it is not a typedef or function,
             **   - if we don't had a storage class given ("int i")
-            **     or the storage class is explicitly specified as static.
+            **   - if the storage class is explicitly specified as static,
+            **   - or if there is an initialization.
             **
             ** This means that "extern int i;" will not get storage allocated.
             */
             if ((Decl.StorageClass & SC_FUNC) != SC_FUNC          &&
                 (Decl.StorageClass & SC_TYPEMASK) != SC_TYPEDEF    &&
                 ((Spec.Flags & DS_DEF_STORAGE) != 0         ||
-                 (Decl.StorageClass & (SC_EXTERN|SC_STATIC)) == SC_STATIC)) {
+                 (Decl.StorageClass & (SC_EXTERN|SC_STATIC)) == SC_STATIC ||
+                 ((Decl.StorageClass & SC_EXTERN) != 0 &&
+                  CurTok.Tok == TOK_ASSIGN))) {
 
                 /* We will allocate storage */
                 Decl.StorageClass |= SC_STORAGE;