debugSymbolTable is a global variable and only needs to be created once, not once per system

--HG--
extra : convert_revision : 43cbfd1a58d7d728898cbfae0d7f7d9960eba178
This commit is contained in:
Ali Saidi
2007-08-02 14:32:20 -04:00
parent 456a4570c1
commit 970261f9ce

View File

@@ -72,7 +72,8 @@ System::System(Params *p)
#if FULL_SYSTEM
kernelSymtab = new SymbolTable;
debugSymbolTable = new SymbolTable;
if (!debugSymbolTable)
debugSymbolTable = new SymbolTable;
/**