diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-11-13 00:26:38 -0500 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-11-13 00:26:38 -0500 |
commit | 4c21fab575b146c0e9d374c352124c4d626fec00 (patch) | |
tree | cd55d26f91e7c94adcd6319555e36967249fa4ec /src | |
parent | b0db4e4dcfcd40150bd11269451337d8ab588760 (diff) | |
download | gem5-4c21fab575b146c0e9d374c352124c4d626fec00.tar.xz |
Change warn to DPRINTF.
--HG--
extra : convert_revision : 746bdf92334d220158eb0eb6bf113b4dcedbb354
Diffstat (limited to 'src')
-rw-r--r-- | src/cpu/o3/lsq_impl.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/o3/lsq_impl.hh b/src/cpu/o3/lsq_impl.hh index 317e23b14..5e7945c1c 100644 --- a/src/cpu/o3/lsq_impl.hh +++ b/src/cpu/o3/lsq_impl.hh @@ -46,7 +46,7 @@ template <class Impl> void LSQ<Impl>::DcachePort::recvFunctional(PacketPtr pkt) { - warn("O3CPU doesn't update things on a recvFunctional."); + DPRINTF(LSQ, "LSQ doesn't update things on a recvFunctional."); } template <class Impl> |