diff options
| author | tgrogers <[email protected]> | 2018-10-08 14:56:25 -0400 |
|---|---|---|
| committer | tgrogers <[email protected]> | 2018-10-08 14:56:25 -0400 |
| commit | 2522f06a47ab854ade2bdada3eaff63c0df36bf4 (patch) | |
| tree | d0bdcc7da333bf842a3e85836d53eba9e60282e8 /src/gpgpu-sim/gpu-cache.h | |
| parent | afb28556c4f08e4daca17525e7e377d9aaec0ee5 (diff) | |
fixing an error about address length in the cache
Diffstat (limited to 'src/gpgpu-sim/gpu-cache.h')
| -rw-r--r-- | src/gpgpu-sim/gpu-cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |
