Some changes in debug info generation.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4788 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -65,18 +65,19 @@ struct Segment;
|
||||
|
||||
typedef struct CodeRange CodeRange;
|
||||
struct CodeRange {
|
||||
unsigned long Offs;
|
||||
unsigned long Size;
|
||||
struct Segment* Seg; /* Segment of this code range */
|
||||
unsigned long Offs; /* Offset of code range */
|
||||
unsigned long Size; /* Size of code range */
|
||||
};
|
||||
|
||||
|
||||
|
||||
typedef struct LineInfo LineInfo;
|
||||
struct LineInfo {
|
||||
struct FileInfo* File; /* File struct for this line */
|
||||
FilePos Pos; /* File position */
|
||||
Collection Fragments; /* Fragments for this line */
|
||||
Collection CodeRanges; /* Code ranges for this line */
|
||||
struct FileInfo* File; /* File struct for this line */
|
||||
FilePos Pos; /* File position */
|
||||
Collection Fragments; /* Fragments for this line */
|
||||
Collection CodeRanges; /* Code ranges for this line */
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user