preproc: make "StackPointer" a const char *

The less non-const the better...

Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
This commit is contained in:
H. Peter Anvin 2016-05-24 23:46:50 -07:00
parent 5e43bfef24
commit 6c8b2be1dd

View file

@ -389,7 +389,7 @@ static const char * const tasm_directives[] = {
};
static int StackSize = 4;
static char *StackPointer = "ebp";
static const char *StackPointer = "ebp";
static int ArgOffset = 8;
static int LocalOffset = 0;