-----Original Message-----
From: [email protected] on behalf of [email protected]
Sent: Mon 1/18/2010 2:40 PM
To: Hsu, Lisa
Subject: changeset in m5: since totalInstructions() is impl'ed by all the...
 
You are not allowed to post to this mailing list, and your message has
been automatically rejected.  If you think that your messages are
being rejected in error, contact the mailing list owner at
[email protected].


--- Begin Message ---
changeset 6f8efbef2300 in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=6f8efbef2300
description:
        since totalInstructions() is impl'ed by all the cpus, make it an 
abstract base class.

diffstat:

1 file changed, 1 insertion(+), 1 deletion(-)
src/cpu/base.hh |    2 +-

diffs (12 lines):

diff -r 9eb8c185c548 -r 6f8efbef2300 src/cpu/base.hh
--- a/src/cpu/base.hh   Tue Jan 12 10:17:19 2010 -0800
+++ b/src/cpu/base.hh   Tue Jan 12 10:22:46 2010 -0800
@@ -274,7 +274,7 @@
      */
     virtual BranchPred *getBranchPred() { return NULL; };
 
-    virtual Counter totalInstructions() const { return 0; }
+    virtual Counter totalInstructions() const = 0;
 
     // Function tracing
   private:

--- End Message ---
_______________________________________________
m5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to