v0.1.1
Bug fix
Fix the out-of-order core stalling forever on unaligned memory loads.
The alignment-fixup path copied the split load uop back into the fetch slot
inside an assert(), so the call was compiled out under -DNDEBUG (release
builds, including the PyPI wheel). The original unaligned load then re-faulted
on every refetch until the deadlock detector aborted the run, surfacing as a
misleading clean guest_exit.
With the fix, unaligned loads work on the default out-of-order core, and a real
static glibc binary now runs end to end on either core (core="ooo" or
core="seq") — previously glibc required core="seq".