diff options
author | Korey Sewell <ksewell@umich.edu> | 2009-03-04 13:17:08 -0500 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2009-03-04 13:17:08 -0500 |
commit | 30cd2d21fad6c12e2540672f315f561c9a1643ec (patch) | |
tree | 04709508ae413d03b80b07e633500300e756b129 /src/cpu/inorder/resources | |
parent | f69b018571a6396d0e679d4d0eceb47ef4496530 (diff) | |
download | gem5-30cd2d21fad6c12e2540672f315f561c9a1643ec.tar.xz |
Remove unused functions/comments cluttering up the code.
Diffstat (limited to 'src/cpu/inorder/resources')
-rw-r--r-- | src/cpu/inorder/resources/cache_unit.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/cpu/inorder/resources/cache_unit.cc b/src/cpu/inorder/resources/cache_unit.cc index 6b62c864a..6fd7ae36c 100644 --- a/src/cpu/inorder/resources/cache_unit.cc +++ b/src/cpu/inorder/resources/cache_unit.cc @@ -454,12 +454,10 @@ CacheUnit::processCacheCompletion(PacketPtr pkt) findRequest(cache_pkt->cacheReq->getInst())); assert(cache_req); -#if TRACING_ON + // Get resource request info + // @todo: SMT needs to figure out where to get thread # from. unsigned tid = 0; -#endif - - //tid = pkt->req->getThreadNum(); unsigned stage_num = cache_req->getStageNum(); DynInstPtr inst = cache_req->inst; |