55 gdb::byte_vector unpacked_tags (tags.size () * 2);
57 int unpacked = 0, packed = 0;
63 unpacked_tags[unpacked] = (tags[packed] >> 4) & 0xf;
68 for (; packed < tags.size (); unpacked += 2, packed++)
70 unpacked_tags[unpacked] = tags[packed] & 0xf;
71 unpacked_tags[unpacked + 1] = (tags[packed] >> 4) & 0xf;
75 tags = std::move (unpacked_tags);