summaryrefslogtreecommitdiff
path: root/colm
diff options
context:
space:
mode:
Diffstat (limited to 'colm')
-rw-r--r--colm/pdabuild.cc2
-rw-r--r--colm/pdacodegen.cc2
-rw-r--r--colm/pdarun.h2
3 files changed, 0 insertions, 6 deletions
diff --git a/colm/pdabuild.cc b/colm/pdabuild.cc
index c77d1f4d..4a82a077 100644
--- a/colm/pdabuild.cc
+++ b/colm/pdabuild.cc
@@ -1365,8 +1365,6 @@ void Compiler::makeRuntimeData()
runtimeData->regionInfo[regId].defaultToken =
reg->defaultTokenInstance == 0 ? -1 : reg->defaultTokenInstance->tokenDef->tdLangEl->id;
runtimeData->regionInfo[regId].eofFrameId = -1;
- runtimeData->regionInfo[regId].isIgnoreOnly = reg->isIgnoreOnly;
- runtimeData->regionInfo[regId].isCiOnly = reg->isCiOnly;
runtimeData->regionInfo[regId].ciLelId = reg->isCiOnly ? reg->derivedFrom->ciLel->id : 0;
CodeBlock *block = reg->preEofBlock;
diff --git a/colm/pdacodegen.cc b/colm/pdacodegen.cc
index 45857701..8bd4497f 100644
--- a/colm/pdacodegen.cc
+++ b/colm/pdacodegen.cc
@@ -353,8 +353,6 @@ void PdaCodeGen::writeRuntimeData( RuntimeData *runtimeData, PdaTables *pdaTable
for ( int i = 0; i < runtimeData->numRegions; i++ ) {
out << "\t{ " << runtimeData->regionInfo[i].defaultToken <<
", " << runtimeData->regionInfo[i].eofFrameId <<
- ", " << runtimeData->regionInfo[i].isIgnoreOnly <<
- ", " << runtimeData->regionInfo[i].isCiOnly <<
", " << runtimeData->regionInfo[i].ciLelId <<
" }";
diff --git a/colm/pdarun.h b/colm/pdarun.h
index 0e209ab1..6ce27e93 100644
--- a/colm/pdarun.h
+++ b/colm/pdarun.h
@@ -218,8 +218,6 @@ typedef struct _RegionInfo
{
long defaultToken;
long eofFrameId;
- int isIgnoreOnly;
- int isCiOnly;
int ciLelId;
} RegionInfo;