summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2006-10-14 02:09:05 -0400
committerSteve Reinhardt <stever@eecs.umich.edu>2006-10-14 02:09:05 -0400
commit9202422d6ebb7a17936bee1b9aaa427541156d13 (patch)
tree6f0702ad95101d276b35cae81a65615d6e75d74c
parentc2a655036644ed31706e8c606ed54710c3d680ea (diff)
downloadgem5-9202422d6ebb7a17936bee1b9aaa427541156d13.tar.xz
Get rid of unused CacheBlk << output operator.
--HG-- extra : convert_revision : d5c0aadc35edf5c9495afcd3375f1f64716ef845
-rw-r--r--src/mem/cache/cache_blk.hh19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/mem/cache/cache_blk.hh b/src/mem/cache/cache_blk.hh
index a75c9611d..078c82d82 100644
--- a/src/mem/cache/cache_blk.hh
+++ b/src/mem/cache/cache_blk.hh
@@ -38,8 +38,6 @@
#include "sim/root.hh" // for Tick
#include "arch/isa_traits.hh" // for Addr
-#include <iostream>
-
/**
* Cache block status bit assignments
*/
@@ -180,21 +178,4 @@ class CacheBlk
};
-/**
- * Output a CacheBlk to the given ostream.
- * @param out The stream for the output.
- * @param blk The cache block to print.
- *
- * @return The output stream.
- */
-inline std::ostream &
-operator<<(std::ostream &out, const CacheBlk &blk)
-{
- out << std::hex << std::endl;
- out << " Tag: " << blk.tag << std::endl;
- out << " Status: " << blk.status << std::endl;
-
- return(out << std::dec);
-}
-
#endif //__CACHE_BLK_HH__