X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fcc65%2Fshiftexpr.c;h=6920590e8660e6e5ec8b08882f7a887862a3803e;hb=ed2767e65f05b853eda1b071938062126de6f517;hp=2a5da3b9c21e7d67c004ebe3ffc2f503f30c5304;hpb=d46b1a395b0b97efda0ca5697ff5d1b45944b744;p=cc65 diff --git a/src/cc65/shiftexpr.c b/src/cc65/shiftexpr.c index 2a5da3b9c..6920590e8 100644 --- a/src/cc65/shiftexpr.c +++ b/src/cc65/shiftexpr.c @@ -6,7 +6,7 @@ /* */ /* */ /* */ -/* (C) 2004 Ullrich von Bassewitz */ +/* (C) 2004-2006 Ullrich von Bassewitz */ /* Römerstraße 52 */ /* D-70794 Filderstadt */ /* EMail: uz@cc65.org */ @@ -65,8 +65,8 @@ void ShiftExpr (struct ExprDesc* Expr) CodeMark Mark1; CodeMark Mark2; token_t Tok; /* The operator token */ - type* EffType; /* Effective lhs type */ - type* ResultType; /* Type of the result */ + Type* EffType; /* Effective lhs type */ + Type* ResultType; /* Type of the result */ unsigned ExprBits; /* Bits of the lhs operand */ unsigned GenFlags; /* Generator flags */ unsigned ltype; @@ -185,7 +185,7 @@ void ShiftExpr (struct ExprDesc* Expr) (ED_IsLocConst (Expr) || ED_IsLocStack (Expr)) && Expr2.IVal >= 8) { - type* OldType; + Type* OldType; /* Increase the address by one and decrease the shift count */ ++Expr->IVal;