Now only one namespace table size

Removed all ASM and LST file output


date	99.05.20.23.18.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 17:14:40 +00:00
parent 464de79af6
commit 317e568341

View File

@ -161,16 +161,6 @@ NsPushCurrentScope (nte *NewScope, NsType Type)
CurrentScope++;
CurrentScope->Scope = NewScope;
CurrentScope->Type = Type;
if (CurrentScope->Scope == RootObject->Scope)
{
NsCurrentSize = NsRootSize;
}
else
{
NsCurrentSize = NS_DEFAULT_TABLE_SIZE;
}
}
else
@ -267,19 +257,8 @@ NsPopCurrent (NsType Type)
while (CurrentScope > &ScopeStack[0])
{
CurrentScope--;
if (RootObject->Scope == CurrentScope->Scope)
{
NsCurrentSize = NsRootSize;
}
else
{
NsCurrentSize = NS_DEFAULT_TABLE_SIZE;
}
Count++;
DEBUG_PRINT (TRACE_EXEC, ("Popped %d\n", (CurrentScope+1)->Type));
if ((TYPE_Any == Type) || (Type == (CurrentScope + 1)->Type))