]> git.sur5r.net Git - cc65/blobdiff - src/cc65/function.c
Formatting fixes.
[cc65] / src / cc65 / function.c
index 1d63d55c54feb5a0a9182c2d1bd22de4569a0756..97d6916ffdcab1be085c3d88edcbbf16686ebc8d 100644 (file)
@@ -79,14 +79,14 @@ static Function* NewFunction (struct SymEntry* Sym)
     Function* F = (Function*) xmalloc (sizeof (Function));
 
     /* Initialize the fields */
-    F->FuncEntry        = Sym;
-    F->ReturnType       = GetFuncReturn (Sym->Type);
-    F->Desc             = GetFuncDesc (Sym->Type);
-    F->Reserved         = 0;
-    F->RetLab           = GetLocalLabel ();
-    F->TopLevelSP       = 0;
-    F->RegOffs          = RegisterSpace;
-    F->Flags            = IsTypeVoid (F->ReturnType) ? FF_VOID_RETURN : FF_NONE;
+    F->FuncEntry  = Sym;
+    F->ReturnType = GetFuncReturn (Sym->Type);
+    F->Desc       = GetFuncDesc (Sym->Type);
+    F->Reserved   = 0;
+    F->RetLab     = GetLocalLabel ();
+    F->TopLevelSP = 0;
+    F->RegOffs    = RegisterSpace;
+    F->Flags      = IsTypeVoid (F->ReturnType) ? FF_VOID_RETURN : FF_NONE;
 
     InitCollection (&F->LocalsBlockStack);