diff options
author | Korey Sewell <ksewell@umich.edu> | 2010-06-24 15:34:19 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2010-06-24 15:34:19 -0400 |
commit | 71b67d408bb595471a57dbe8e40cf5ac82c5d3b7 (patch) | |
tree | 4f0b3bc4fd671a4476799cdce0c282f970d313cc /src/cpu/inorder/resources/execution_unit.hh | |
parent | f95430d97e0a9a77b920ab3ca24b134bc682f655 (diff) | |
download | gem5-71b67d408bb595471a57dbe8e40cf5ac82c5d3b7.tar.xz |
inorder: cleanup virtual functions
remove the annotation 'virtual' from function declaration that isnt being derived from
Diffstat (limited to 'src/cpu/inorder/resources/execution_unit.hh')
-rw-r--r-- | src/cpu/inorder/resources/execution_unit.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/inorder/resources/execution_unit.hh b/src/cpu/inorder/resources/execution_unit.hh index e852e3ed0..8be339f4a 100644 --- a/src/cpu/inorder/resources/execution_unit.hh +++ b/src/cpu/inorder/resources/execution_unit.hh @@ -54,13 +54,13 @@ class ExecutionUnit : public Resource { int res_latency, InOrderCPU *_cpu, ThePipeline::Params *params); public: - virtual void regStats(); + void regStats(); /** Execute the function of this resource. The Default is action * is to do nothing. More specific models will derive from this * class and define their own execute function. */ - virtual void execute(int slot_num); + void execute(int slot_num); protected: ///////////////////////////////////////////////////////////////// |