]> git.sur5r.net Git - cc65/blobdiff - src/cc65/codeseg.c
Working on the backend
[cc65] / src / cc65 / codeseg.c
index 44601c591524ff22b5b7d16fd0a36504b9886370..17457768f35d8e681eb7415e14e6646a94ddf8c6 100644 (file)
@@ -402,7 +402,7 @@ CodeSeg* NewCodeSeg (const char* SegName, SymEntry* Func)
 
 
 
-void CS_AddEntry (CodeSeg* S, struct CodeEntry* E, LineInfo* LI)
+void CS_AddEntry (CodeSeg* S, struct CodeEntry* E)
 /* Add an entry to the given code segment */
 {
     /* Transfer the labels if we have any */
@@ -465,7 +465,7 @@ void CS_AddLine (CodeSeg* S, LineInfo* LI, const char* Format, va_list ap)
 
     /* If we have a code entry, transfer the labels and insert it */
     if (E) {
-       CS_AddEntry (S, E, LI);
+       CS_AddEntry (S, E);
     }
 }