From cd4f87b2cc521b039fc4a32dac76a8b099b6bc62 Mon Sep 17 00:00:00 2001 From: uz Date: Fri, 6 Jul 2012 20:02:43 +0000 Subject: [PATCH] Fixed compiler warnings. git-svn-id: svn://svn.cc65.org/cc65/trunk@5765 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cc65/coptstop.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cc65/coptstop.c b/src/cc65/coptstop.c index 03ca80b41..90e040c46 100644 --- a/src/cc65/coptstop.c +++ b/src/cc65/coptstop.c @@ -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 { -- 2.39.5