[m5-dev] changeset in m5: InOrder didnt have all it's params set to a def...

2009-03-04 Thread Korey Sewell
changeset b4e30b30f695 in /z/repo/m5 details: http://repo.m5sim.org/m5?cmd=changeset;node=b4e30b30f695 description: InOrder didnt have all it's params set to a default value, which is now required for M5 objects; Also, a # of values need to be reset to 0 (or the appropriate value) before

Re: [m5-dev] changeset in m5: InOrder didnt have all it's params set to a def...

2009-03-04 Thread Korey Sewell
InOrderDynInst::InOrderDynInst() : traceData(NULL), cpu(cpu) -{ initVars(); } +{ +seqNum = 0; +initVars(); +} Sorry guys, I'm aware of this... Constructor initialization will be updated in next changeset. I want to go through all the InOrderCPU structures and clean up any