89c89
< LSQUnit();
---
> LSQUnit(uint32_t lqEntries, uint32_t sqEntries);
90a91,96
> /** We cannot copy LSQUnit because it has stats for which copy
> * contructor is deleted explicitly. However, STL vector requires
> * a valid copy constructor for the base type at compile time.
> */
> LSQUnit(const LSQUnit &l) { panic("LSQUnit is not copy-able"); }
>
93,94c99
< LSQ *lsq_ptr, unsigned maxLQEntries, unsigned maxSQEntries,
< unsigned id);
---
> LSQ *lsq_ptr, unsigned id);