Fix an error in ReleaseLiteral.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5967 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
fa722e351a
commit
63a0813979
1 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* (C) 1998-2009, Ullrich von Bassewitz */
|
/* (C) 1998-2013, Ullrich von Bassewitz */
|
||||||
/* Roemerstrasse 52 */
|
/* Roemerstrasse 52 */
|
||||||
/* D-70794 Filderstadt */
|
/* D-70794 Filderstadt */
|
||||||
/* EMail: uz@cc65.org */
|
/* EMail: uz@cc65.org */
|
||||||
|
@ -169,7 +169,7 @@ void ReleaseLiteral (Literal* L)
|
||||||
/* Decrement the reference counter for the literal */
|
/* Decrement the reference counter for the literal */
|
||||||
{
|
{
|
||||||
--L->RefCount;
|
--L->RefCount;
|
||||||
CHECK (L->RefCount >= 0 && (L->RefCount > 0 || !L->Output));
|
CHECK (L->RefCount >= 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue