You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type
int128*{.importc: "__int128".} =object# Size missing https://github.com/nim-lang/Nim/issues/7674
helper128 =object
lo, hi: uint64func`+`(x, y: int128): int128 {.magic: "AddI".}
var
helperA =helper128(lo: 10)
helperB =helper128(lo: 30)
let
a = (cast[ptr int128](helperA.addr))[]
b = (cast[ptr int128](helperB.addr))[]
var c = a + b
echo (cast[ptr helper128](c.addr))[]