summaryrefslogtreecommitdiff
path: root/src/gpgpu-sim/gpu-cache.h
diff options
context:
space:
mode:
authortgrogers <[email protected]>2017-11-18 22:25:13 -0500
committertgrogers <[email protected]>2017-11-18 22:25:13 -0500
commit8386d194b8a239ed0c36852c8a6efff142712801 (patch)
tree70548341879ee6a3bb4ba5280d3651bc2bb00f6b /src/gpgpu-sim/gpu-cache.h
parentb2c4c3e23530799e6e24eb83b2a6b82cf7891cf4 (diff)
removing another assert
Diffstat (limited to 'src/gpgpu-sim/gpu-cache.h')
-rw-r--r--src/gpgpu-sim/gpu-cache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpgpu-sim/gpu-cache.h b/src/gpgpu-sim/gpu-cache.h
index b649135..6a84a3a 100644
--- a/src/gpgpu-sim/gpu-cache.h
+++ b/src/gpgpu-sim/gpu-cache.h
@@ -153,8 +153,8 @@ struct line_cache_block: public cache_block_t {
}
void fill( unsigned time, mem_access_sector_mask_t sector_mask )
{
- if(!m_ignore_on_fill_status)
- assert( m_status == RESERVED );
+ //if(!m_ignore_on_fill_status)
+ // assert( m_status == RESERVED );
m_status = m_set_modified_on_fill? MODIFIED : VALID;