changeset d1a507c6329a in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=d1a507c6329a
description:
        debug: fix AllFlags::disable()

        Looks like copy-and-paste bug, apparently I'm the first
        person to ever use this since it's plainly broken.

diffstat:

 src/base/debug.cc |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r f348cf78072c -r d1a507c6329a src/base/debug.cc
--- a/src/base/debug.cc Thu Jan 12 10:15:00 2012 -0500
+++ b/src/base/debug.cc Mon Jan 16 19:00:59 2012 -0800
@@ -134,7 +134,7 @@
         FlagsMap::iterator end = allFlags().end();
         for (; i != end; ++i)
             if (i->second != this)
-                i->second->enable();
+                i->second->disable();
     }
 };
 
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to