Fixed compiler warnings.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5765 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
e50649af2c
commit
cd4f87b2cc
1 changed files with 3 additions and 3 deletions
|
@ -1645,7 +1645,7 @@ static const OptFuncDesc FuncTable[] = {
|
|||
{ "tosaddax", Opt_tosaddax, REG_NONE, OP_NONE },
|
||||
{ "tosandax", Opt_tosandax, REG_NONE, OP_NONE },
|
||||
{ "tosaslax", Opt_tosaslax, REG_NONE, OP_NONE },
|
||||
#if 0
|
||||
#if 0
|
||||
/* Library routine missing */
|
||||
{ "tosasrax", Opt_tosasrax, REG_NONE, OP_NONE },
|
||||
#endif
|
||||
|
@ -1851,8 +1851,8 @@ unsigned OptStackOps (CodeSeg* S)
|
|||
StackOpData Data;
|
||||
int I;
|
||||
int OldEntryCount; /* Old number of entries */
|
||||
unsigned UsedRegs; /* Registers used */
|
||||
unsigned ChangedRegs; /* Registers changed */
|
||||
unsigned UsedRegs = 0; /* Registers used */
|
||||
unsigned ChangedRegs = 0;/* Registers changed */
|
||||
|
||||
|
||||
enum {
|
||||
|
|
Loading…
Add table
Reference in a new issue