diff options
-rw-r--r-- | src/mem/cache/blk.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/cache/blk.hh b/src/mem/cache/blk.hh index c65498f07..d38281e48 100644 --- a/src/mem/cache/blk.hh +++ b/src/mem/cache/blk.hh @@ -339,8 +339,8 @@ class CacheBlk default: s = 'T'; break; // @TODO add other types } return csprintf("state: %x (%c) valid: %d writable: %d readable: %d " - "dirty: %d tag: %x data: %x", status, s, isValid(), - isWritable(), isReadable(), isDirty(), tag, *data); + "dirty: %d tag: %x", status, s, isValid(), + isWritable(), isReadable(), isDirty(), tag); } /** |