]> git.sur5r.net Git - cc65/blobdiff - src/cc65/codelab.c
Working on the backend
[cc65] / src / cc65 / codelab.c
index 97ed7e3b8d8addcf6e0dca2aa5dcb577cac8ceeb..89b45b0e6d4d9a0fb45699aad9460ea584fa11db 100644 (file)
@@ -96,18 +96,6 @@ void AddLabelRef (CodeLabel* L, struct CodeEntry* E)
 
 
 
-unsigned RemoveLabelRef (CodeLabel* L, const struct CodeEntry* E)
-/* Remove a reference to this label, return the number of remaining references */
-{
-    /* Delete the item */
-    CollDeleteItem (&L->JumpFrom, E);
-
-    /* Return the number of remaining references */
-    return CollCount (&L->JumpFrom);
-}
-
-
-
 void MoveLabelRefs (CodeLabel* OldLabel, CodeLabel* NewLabel)
 /* Move all references to OldLabel to point to NewLabel. OldLabel will have no
  * more references on return.