mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
put cacheLRU coverage explanation on another line
the `: explanation` syntax was not working
This commit is contained in:
parent
af113c7268
commit
9df246e5de
3
src/cache/cacheLRU.sv
vendored
3
src/cache/cacheLRU.sv
vendored
@ -68,7 +68,8 @@ module cacheLRU
|
||||
|
||||
///// Update replacement bits.
|
||||
|
||||
// coverage off: Untestable without varying NUMWAYS.
|
||||
// coverage off
|
||||
// Excluded from coverage b/c it is untestable without varying NUMWAYS.
|
||||
function integer log2 (integer value);
|
||||
for (log2=0; value>0; log2=log2+1)
|
||||
value = value>>1;
|
||||
|
Loading…
Reference in New Issue
Block a user