mirror of
https://github.com/cc65/cc65.git
synced 2024-12-25 02:29:52 +00:00
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
@ -6,7 +6,7 @@
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* (C) 1998-2009, Ullrich von Bassewitz */
|
||||
/* (C) 1998-2013, Ullrich von Bassewitz */
|
||||
/* Roemerstrasse 52 */
|
||||
/* D-70794 Filderstadt */
|
||||
/* EMail: uz@cc65.org */
|
||||
@ -169,7 +169,7 @@ void ReleaseLiteral (Literal* L)
|
||||
/* Decrement the reference counter for the literal */
|
||||
{
|
||||
--L->RefCount;
|
||||
CHECK (L->RefCount >= 0 && (L->RefCount > 0 || !L->Output));
|
||||
CHECK (L->RefCount >= 0);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user