[m5-dev] [PATCH 3 of 5] 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 we

2009-03-02 Thread Korey Sewell
# HG changeset patch # User Korey Sewell ksew...@umich.edu # Date 1236007007 18000 # Node ID 9a2e4b6c275a8513f040d4cb7604b2f8f25aeb68 # Parent bcb6c464587b1ef278165ff41442b226fed2a4a9 InOrder didnt have all it's params set to a default value, which is now required for M5 objects; Also, a # of

Re: [m5-dev] [PATCH 3 of 5] 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

2009-03-02 Thread nathan binkert
@@ -53,6 +53,15 @@ struct InterStageStruct {     uint64_t nextPC;     InstSeqNum squashedSeqNum;     bool includeSquashInst; + +    InterStageStruct() +    { +        size = 0; +        mispredPC = nextPC = 0; +        squash = branchMispredict = branchTaken = false; +