diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2003-12-20 19:56:31 -0800 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2003-12-20 19:56:31 -0800 |
commit | 126d810d13b1a3a31b86c4867a27efacbc1977c0 (patch) | |
tree | 63c8119c8faefeb7cf33ea8ce11c69d4e9a85512 /base | |
parent | 51286f22b1bfdbec4cd2c8e1cc22ebe613371d90 (diff) | |
parent | 7d8366ac490fd720a09e1d9313f78241cef1dc9f (diff) | |
download | gem5-126d810d13b1a3a31b86c4867a27efacbc1977c0.tar.xz |
Merge zizzer:/bk/m5 into isabel.reinhardt.house:/z/stever/bk/m5
--HG--
extra : convert_revision : 315f207185b418f41509210a35188be996c0eb0a
Diffstat (limited to 'base')
-rw-r--r-- | base/cprintf.cc | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/base/cprintf.cc b/base/cprintf.cc index 945ad5b38..af3b26a57 100644 --- a/base/cprintf.cc +++ b/base/cprintf.cc @@ -238,22 +238,6 @@ ArgList::dump(const string &format) } break; } - - ios::iostate state = stream->rdstate(); - if (state) { -#if 0 - cout << "stream->rdstate() == " << state << endl; - if (state & ios::badbit) - cout << "stream is bad!\n"; - if (state & ios::eofbit) - cout << "stream at eof!\n"; - if (state & ios::failbit) - cout << "stream failed!\n"; - if (state & ios::goodbit) - cout << "stream is good!!\n"; -#endif - stream->clear(); - } } while (!objects.empty()) { |