Actually generate basic line info.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4928 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
/* */
|
||||
/* lineinfo.h */
|
||||
/* */
|
||||
/* Source file line info structure */
|
||||
/* Source file line info management */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
@@ -33,16 +33,6 @@
|
||||
|
||||
|
||||
|
||||
/* Note: The line infos kept here are additional line infos supplied by the
|
||||
* ".dbg line" command. The native line infos are always kept in the fragments
|
||||
* itself (because one fragment always originates from one line). The
|
||||
* additional line infos (which may not exist if none are supplied in the
|
||||
* source) may have several fragments attached (as is the case with sources
|
||||
* generated by the C compiler).
|
||||
*/
|
||||
|
||||
|
||||
|
||||
#ifndef LINEINFO_H
|
||||
#define LINEINFO_H
|
||||
|
||||
@@ -111,7 +101,7 @@ void FreeLineInfoSlot (unsigned Slot);
|
||||
* FIFO order.
|
||||
*/
|
||||
|
||||
void GenLineInfo (unsigned Slot, unsigned File, unsigned long Line, unsigned Col);
|
||||
void GenLineInfo (unsigned Slot, const FilePos* Pos);
|
||||
/* Generate a new line info in the given slot */
|
||||
|
||||
void ClearLineInfo (unsigned Slot);
|
||||
|
||||
Reference in New Issue
Block a user