diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-09-09 02:40:11 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-09-09 02:40:11 -0700 |
commit | 49a7ed0397954f555f5fb4272334e606a3048c59 (patch) | |
tree | d39633d218de3afdc2417fa0b15748d8411bcbcb /src/cpu/base_dyn_inst.hh | |
parent | b7b545bc38bcd9ee54f1b8e45064cd8b7a3070b0 (diff) | |
download | gem5-49a7ed0397954f555f5fb4272334e606a3048c59.tar.xz |
StaticInst: Merge StaticInst and StaticInstBase.
Having two StaticInst classes, one nominally ISA dependent and the other ISA
dependent, has not been historically useful and makes the StaticInst class
more complicated that it needs to be. This change merges StaticInstBase into
StaticInst.
Diffstat (limited to 'src/cpu/base_dyn_inst.hh')
-rw-r--r-- | src/cpu/base_dyn_inst.hh | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/cpu/base_dyn_inst.hh b/src/cpu/base_dyn_inst.hh index a3d18bb24..5f0a6106e 100644 --- a/src/cpu/base_dyn_inst.hh +++ b/src/cpu/base_dyn_inst.hh @@ -71,9 +71,6 @@ * Defines a dynamic instruction context. */ -// Forward declaration. -class StaticInstPtr; - template <class Impl> class BaseDynInst : public FastAlloc, public RefCounted { |