On 2/4/26 09:00, Philippe Mathieu-Daudé wrote:
Add a method to sign-extend a Int128, along with unit tests.
What in the world does this mean? I can't imagine a real use for this:
+static inline Int128 int128_signextend(Int128 a)
+{
+ return a.hi ? a : int128_exts64(a.lo);
+}
r~
