Closed b-studios closed 2 months ago
Note that we only splice the names of variables (e.g., %x17) and not their type (e.g., %Pos %x17). This is mostly due to instructions like
%x17
%Pos %x17
%z = icmp sge %Int %x, %y
where generating
%z = icmp sge %Int %x, %Int %y
would be wrong.
@phischu I am aware that this will result in merge conflicts with #553, but at some point we need to bite the bullet.
Note that we only splice the names of variables (e.g.,
%x17
) and not their type (e.g.,%Pos %x17
). This is mostly due to instructions likewhere generating
would be wrong.