projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a7394ad
)
debug: fix AllFlags::disable()
author
Steve Reinhardt
<steve.reinhardt@amd.com>
Tue, 17 Jan 2012 03:00:59 +0000
(19:00 -0800)
committer
Steve Reinhardt
<steve.reinhardt@amd.com>
Tue, 17 Jan 2012 03:00:59 +0000
(19:00 -0800)
Looks like copy-and-paste bug, apparently I'm the first
person to ever use this since it's plainly broken.
src/base/debug.cc
patch
|
blob
|
history
diff --git
a/src/base/debug.cc
b/src/base/debug.cc
index 71675aadac71595f4d51e9b0b83f6964951f7673..ba154f37747621061c8a0b83b0e80a6c433abd68 100644
(file)
--- a/
src/base/debug.cc
+++ b/
src/base/debug.cc
@@
-134,7
+134,7
@@
struct AllFlags : public Flag
FlagsMap::iterator end = allFlags().end();
for (; i != end; ++i)
if (i->second != this)
- i->second->
en
able();
+ i->second->
dis
able();
}
};