diff options
Diffstat (limited to 'src/cpu/static_inst.hh')
-rw-r--r-- | src/cpu/static_inst.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cpu/static_inst.hh b/src/cpu/static_inst.hh index 7206a2616..684a22856 100644 --- a/src/cpu/static_inst.hh +++ b/src/cpu/static_inst.hh @@ -117,6 +117,9 @@ class StaticInst : public RefCounted, public StaticInstFlags /// Number of integer destination regs. int8_t numIntDestRegs() const { return _numIntDestRegs; } //@} + /// Number of coprocesor destination regs. + int8_t numCCDestRegs() const { return _numCCDestRegs; } + //@} /// @name Flag accessors. /// These functions are used to access the values of the various |