Store live_outs as a bitset
We were storing and passing them as std::unordered_map (and sometimes switching to std::vector). But the set can only contain the integers 0 through 15, so just represent it as a bitset.
Showing
Please register or sign in to comment