]> git.sur5r.net Git - cc65/commitdiff
Fix missing spaces
authorLauri Kasanen <cand@gmx.com>
Sat, 13 Apr 2019 16:43:44 +0000 (19:43 +0300)
committergreg-king5 <greg.king5@verizon.net>
Sun, 21 Apr 2019 16:46:03 +0000 (12:46 -0400)
src/cc65/codeseg.c
src/cc65/expr.c
src/cc65/goto.c
src/cc65/symtab.c

index 297d09c4f0a75e521894aca5c1e0cdd63de96477..e2fd84a7c953bc09a5063d9d56581e4df38d3209 100644 (file)
@@ -429,7 +429,7 @@ static CodeEntry* ParseInsn (CodeSeg* S, LineInfo* LI, const char* L)
         /* If we don't have the label, it's a forward ref - create it unless
         ** it's an external function.
         */
-        if (Label == 0 && (OPC->OPC != OP65_JMP || IsLocalLabelName(Arg)) ) {
+        if (Label == 0 && (OPC->OPC != OP65_JMP || IsLocalLabelName (Arg)) ) {
             /* Generate a new label */
             Label = CS_NewCodeLabel (S, Arg, Hash);
         }
index a4b58b7230e26405fac23f8ce6e9c42d8060c925..fad1c9514044741536b0ec28f85d1f1d831e9f7c 100644 (file)
@@ -704,7 +704,7 @@ static void Primary (ExprDesc* E)
                 /* output its label */
                 E->Flags = E_RTYPE_RVAL | E_LOC_STATIC;
                 E->Name = Entry->V.L.Label;
-                E->Type = PointerTo(type_void);
+                E->Type = PointerTo (type_void);
                 NextToken ();
             } else {
                 Error ("Computed gotos are a C extension, not supported with this --standard");
index 1b99a98030c3ecc20fa5aece05e3bf4a9a894894..08a7033c38dc3da200810884057a82a5f002abfc 100644 (file)
@@ -90,12 +90,12 @@ void GotoStatement (void)
             ConsumeLBrack ();
 
             /* Find array size */
-            if (!IsTypeArray(arr->Type) || SizeOf(arr->Type) == 0 ||
-                SizeOf(GetElementType(arr->Type)) != 2)
+            if (!IsTypeArray (arr->Type) || SizeOf (arr->Type) == 0 ||
+                SizeOf (GetElementType(arr->Type)) != 2)
                 Error ("Expected array");
-            if (GetElementCount(arr->Type) > 127)
+            if (GetElementCount (arr->Type) > 127)
                 Error ("Only arrays with <= 127 labels are supported, got %lu",
-                       GetElementCount(arr->Type));
+                       GetElementCount (arr->Type));
 
             if (CurTok.Tok == TOK_ICONST) {
                 val = CurTok.IVal;
index 52ef04e4250aa90b4b3446c3f13598deebf4e28c..a31c11bfc275c425fa91dd742729428b54790580 100644 (file)
@@ -745,7 +745,7 @@ SymEntry* AddLabelSym (const char* Name, unsigned Flags)
                 */
                 if (DOR->Flags & SC_GOTO) {
                     SymEntry *E;
-                    g_userodata();
+                    g_userodata ();
                     g_defdatalabel (DOR->LateSP_Label);
                     g_defdata (CF_CONST | CF_INT, StackPtr - DOR->StackPtr, 0);