1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00
This commit is contained in:
Polluks 2020-11-18 01:01:17 +01:00 committed by Oliver Schmidt
parent 5ba16654a3
commit bd6e5927c4
2 changed files with 3 additions and 3 deletions

View File

@ -1732,7 +1732,7 @@ unsigned OptStackOps (CodeSeg* S)
int I;
int OldEntryCount; /* Old number of entries */
unsigned Used; /* What registers would be used */
unsigned PushedRegs; /* Track if the same regs are used after the push */
unsigned PushedRegs = 0; /* Track if the same regs are used after the push */
int RhsAChgIndex; /* Track if rhs is changed more than once */
int RhsXChgIndex; /* Track if rhs is changed more than once */
int IsRegAOptFunc = 0; /* Whether to use the RegA-only optimizations */

View File

@ -3871,8 +3871,8 @@ static void hieOr (ExprDesc *Expr)
static void hieQuest (ExprDesc* Expr)
/* Parse the ternary operator */
{
int FalseLab;
int TrueLab;
int FalseLab = 0;
int TrueLab = 0;
CodeMark SkippedBranch;
CodeMark TrueCodeEnd;
ExprDesc Expr2; /* Expression 2 */