]> git.sur5r.net Git - cc65/blobdiff - src/cc65/function.h
Cosmetic changes
[cc65] / src / cc65 / function.h
index b54671c3c6a1b8079728ace37206822f59767206..04c855e6eab081ede215af420d82dfb51931837d 100644 (file)
@@ -9,7 +9,7 @@
 /* (C) 1998-2001 Ullrich von Bassewitz                                       */
 /*               Wacholderweg 14                                             */
 /*               D-70597 Stuttgart                                           */
-/* EMail:        uz@musoftware.de                                            */
+/* EMail:        uz@cc65.org                                                 */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
@@ -76,12 +76,12 @@ int HasVoidReturn (const Function* F);
 int IsVariadic (const Function* F);
 /* Return true if this is a variadic function */
 
-void RememberEntry (Function* F);
-/* Remember the current output position for local space creation later */
-
 unsigned GetRetLab (const Function* F);
 /* Return the return jump label */
 
+int GetTopLevelSP (const Function* F);
+/* Get the value of the stack pointer on function top level */
+
 int ReserveLocalSpace (Function* F, unsigned Size);
 /* Reserve (but don't allocate) the given local space and return the stack
  * offset.