Pass type of line info through the object files.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4957 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2011-01-29 22:16:03 +00:00
parent 0e32325ca6
commit 299a0ed4cd
7 changed files with 48 additions and 26 deletions

View File

@@ -267,7 +267,7 @@ static MacExp* NewMacExp (Macro* M)
for (I = 0; I < M->ParamCount; ++I) {
E->Params[I] = 0;
}
E->LISlot = AllocLineInfoSlot (LI_TYPE_MACRO | MacExpansions);
E->LISlot = AllocLineInfoSlot (LI_TYPE_MACRO, MacExpansions);
/* One macro expansion more */
++MacExpansions;