From 2522f06a47ab854ade2bdada3eaff63c0df36bf4 Mon Sep 17 00:00:00 2001 From: tgrogers Date: Mon, 8 Oct 2018 14:56:25 -0400 Subject: fixing an error about address length in the cache --- src/gpgpu-sim/gpu-cache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gpgpu-sim/gpu-cache.h b/src/gpgpu-sim/gpu-cache.h index 4ed382c..0b77f47 100644 --- a/src/gpgpu-sim/gpu-cache.h +++ b/src/gpgpu-sim/gpu-cache.h @@ -222,7 +222,7 @@ struct line_cache_block: public cache_block_t { return m_readable; } virtual void print_status() { - printf("m_block_addr is %u, status = %u\n", m_block_addr, m_status); + printf("m_block_addr is %llu, status = %u\n", m_block_addr, m_status); } -- cgit v1.3