Use the right type
authorNathan Binkert <binkertn@umich.edu>
Sun, 10 Jun 2007 06:00:13 +0000 (23:00 -0700)
committerNathan Binkert <binkertn@umich.edu>
Sun, 10 Jun 2007 06:00:13 +0000 (23:00 -0700)
--HG--
extra : convert_revision : b5ca3153ca786ea4e86bfe83f7760ba9ee41a882

src/cpu/o3/fetch_impl.hh

index 0d740302308719698a8622639c57704faf1fe1b4..ff4617fcc8a40e4a250b80fc08245e3a90783da3 100644 (file)
@@ -29,6 +29,9 @@
  *          Korey Sewell
  */
 
+#include <algorithm>
+#include <cstring>
+
 #include "config/use_checker.hh"
 
 #include "arch/isa_traits.hh"
@@ -48,8 +51,6 @@
 #include "sim/system.hh"
 #endif // FULL_SYSTEM
 
-#include <algorithm>
-
 template<class Impl>
 void
 DefaultFetch<Impl>::IcachePort::setPeer(Port *port)
@@ -374,7 +375,7 @@ DefaultFetch<Impl>::processCacheCompletion(PacketPtr pkt)
         return;
     }
 
-    memcpy(cacheData[tid], pkt->getPtr<uint8_t *>(), cacheBlkSize);
+    memcpy(cacheData[tid], pkt->getPtr<uint8_t>(), cacheBlkSize);
     cacheDataValid[tid] = true;
 
     if (!drainPending) {