Fragment cleanup, more string pool use
git-svn-id: svn://svn.cc65.org/cc65/trunk@2201 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -238,7 +238,6 @@ Section* ReadSection (FILE* F, ObjData* O)
|
||||
unsigned char Type = Read8 (F);
|
||||
|
||||
/* Extract the check mask from the type */
|
||||
unsigned char Check = Type & FRAG_CHECKMASK;
|
||||
unsigned char Bytes = Type & FRAG_BYTEMASK;
|
||||
Type &= FRAG_TYPEMASK;
|
||||
|
||||
@@ -268,18 +267,6 @@ Section* ReadSection (FILE* F, ObjData* O)
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* A list of check expressions may follow */
|
||||
if (Check) {
|
||||
|
||||
/* Read the number of expressions that follow */
|
||||
unsigned Count = ReadVar (F);
|
||||
|
||||
/* Read the expressions */
|
||||
while (Count--) {
|
||||
/* ### */
|
||||
}
|
||||
}
|
||||
|
||||
/* Read the file position of the fragment */
|
||||
ReadFilePos (F, &Frag->Pos);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user