Move the compiler stack pointer into its own module.

Improved the inlining of standard C functions. Added more standard functions
to inline.


git-svn-id: svn://svn.cc65.org/cc65/trunk@3095 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2004-06-05 11:35:53 +00:00
parent a0c1b9fe38
commit 104ae3a54f
17 changed files with 985 additions and 100 deletions

View File

@@ -54,23 +54,13 @@
#include "error.h"
#include "global.h"
#include "segments.h"
#include "stackptr.h"
#include "textseg.h"
#include "util.h"
#include "codegen.h"
/*****************************************************************************/
/* Data */
/*****************************************************************************/
/* Compiler relative stack pointer */
int StackPtr = 0;
/*****************************************************************************/
/* Helpers */
/*****************************************************************************/