diff options
Diffstat (limited to 'cpu/beta_cpu/decode.hh')
-rw-r--r-- | cpu/beta_cpu/decode.hh | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/cpu/beta_cpu/decode.hh b/cpu/beta_cpu/decode.hh index af2a5ee54..21f6799b7 100644 --- a/cpu/beta_cpu/decode.hh +++ b/cpu/beta_cpu/decode.hh @@ -64,9 +64,6 @@ class SimpleDecode void decode(); - // Might want to make squash a friend function. - void squash(); - private: inline bool fetchInstsValid(); @@ -76,8 +73,11 @@ class SimpleDecode void squash(DynInstPtr &inst); - void dumpFetchQueue(); + public: + // Might want to make squash a friend function. + void squash(); + private: // Interfaces to objects outside of decode. /** CPU interface. */ FullCPU *cpu; @@ -113,7 +113,6 @@ class SimpleDecode /** Skid buffer between fetch and decode. */ std::queue<FetchStruct> skidBuffer; - private: //Consider making these unsigned to avoid any confusion. /** Rename to decode delay, in ticks. */ unsigned renameToDecodeDelay; |