diff options
Diffstat (limited to 'src/arch/x86/regfile.hh')
-rw-r--r-- | src/arch/x86/regfile.hh | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/src/arch/x86/regfile.hh b/src/arch/x86/regfile.hh index d1dbe3823..6f7e9120c 100644 --- a/src/arch/x86/regfile.hh +++ b/src/arch/x86/regfile.hh @@ -97,20 +97,17 @@ namespace X86ISA Addr readNextNPC(); void setNextNPC(Addr val); - protected: - IntRegFile intRegFile; // integer register file - public: - void clear(); - - IntReg readIntReg(int intReg); + void clear() + {} - void setIntReg(int intReg, const IntReg &val); + void serialize(EventManager *em, std::ostream &os) + {} - void serialize(EventManager *em, std::ostream &os); void unserialize(EventManager *em, Checkpoint *cp, - const std::string §ion); + const std::string §ion) + {} }; void copyRegs(ThreadContext *src, ThreadContext *dest); |