Index: libcfa/src/device/cpu.cfa
===================================================================
--- libcfa/src/device/cpu.cfa	(revision 64780c1ece911b7999c31110b0fe9f7efe4c3188)
+++ libcfa/src/device/cpu.cfa	(revision 27c97673eaef007dbc6ced268535966743ca910d)
@@ -340,5 +340,14 @@
 		[maps, map_cnt] =  distinct_llcs(cpus, cache_levels - llc, raw);
 
-		/* paranoid */ verify((map_cnt * raw[0][cache_levels - llc].width) == cpus);
+		#if defined(__CFA_WITH_VERIFY__)
+		{
+			unsigned width = 0;
+			for(i; map_cnt) {
+				const char * _;
+				width += read_width(maps[i], strlen(maps[i]), &_);
+			}
+			verify(width == cpus);
+		}
+		#endif
 
 		// Get mappings from cpu to cache instance
