Compiled bit types have a little-endian underlying representation. This is, however, an implementation detail. At one point, they had big endian representation. When the transition to little endian was made, some details were left behind in the adder functions. This resulted in garbage values from add ops.
This commit introduces endian-specific adders and moves compiled code to add_le.
Compiled
bit
types have a little-endian underlying representation. This is, however, an implementation detail. At one point, they had big endian representation. When the transition to little endian was made, some details were left behind in the adder functions. This resulted in garbage values from add ops.This commit introduces endian-specific adders and moves compiled code to
add_le
.