Merge pull request #1503 from antmicro/bits2rbt_and_aux

Add bits2rbt and aux data support to bitread
diff --git a/fuzzers/034b-cmt-mmcm-pips/fixup_and_group.py b/fuzzers/034b-cmt-mmcm-pips/fixup_and_group.py
index 49fff97..28a8a5c 100755
--- a/fuzzers/034b-cmt-mmcm-pips/fixup_and_group.py
+++ b/fuzzers/034b-cmt-mmcm-pips/fixup_and_group.py
@@ -218,15 +218,6 @@
             tags_to_mask = [t for t in segbits.keys() if t.startswith(prefix)]
             mask_out_bits(segbits, segbits[tag], tags_to_mask)
 
-    tags_to_remove = set()
-    for tag, bits in segbits.items():
-        if 'REBUF' in tag and 'ACTIVE' not in tag:
-            # FIXME: Removing REBUF pips for now.
-            tags_to_remove.add(tag)
-
-    for tag in tags_to_remove:
-        del segbits[tag]
-
     for tag in segbits.keys():
         if tag.endswith("_ACTIVE") and 'FREQ_BB' in tag:
             for idx in range(4):