mirror of
https://github.com/cc65/cc65.git
synced 2025-08-10 20:25:20 +00:00
Fixed compiler warnings.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5765 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -1645,7 +1645,7 @@ static const OptFuncDesc FuncTable[] = {
|
|||||||
{ "tosaddax", Opt_tosaddax, REG_NONE, OP_NONE },
|
{ "tosaddax", Opt_tosaddax, REG_NONE, OP_NONE },
|
||||||
{ "tosandax", Opt_tosandax, REG_NONE, OP_NONE },
|
{ "tosandax", Opt_tosandax, REG_NONE, OP_NONE },
|
||||||
{ "tosaslax", Opt_tosaslax, REG_NONE, OP_NONE },
|
{ "tosaslax", Opt_tosaslax, REG_NONE, OP_NONE },
|
||||||
#if 0
|
#if 0
|
||||||
/* Library routine missing */
|
/* Library routine missing */
|
||||||
{ "tosasrax", Opt_tosasrax, REG_NONE, OP_NONE },
|
{ "tosasrax", Opt_tosasrax, REG_NONE, OP_NONE },
|
||||||
#endif
|
#endif
|
||||||
@@ -1851,8 +1851,8 @@ unsigned OptStackOps (CodeSeg* S)
|
|||||||
StackOpData Data;
|
StackOpData Data;
|
||||||
int I;
|
int I;
|
||||||
int OldEntryCount; /* Old number of entries */
|
int OldEntryCount; /* Old number of entries */
|
||||||
unsigned UsedRegs; /* Registers used */
|
unsigned UsedRegs = 0; /* Registers used */
|
||||||
unsigned ChangedRegs; /* Registers changed */
|
unsigned ChangedRegs = 0;/* Registers changed */
|
||||||
|
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
|
Reference in New Issue
Block a user