shithub: mc

ref: ff88594df5c5df6fb8f227ab8e5df3529ba6e72f
dir: /test/abi/002_main.myr/

View raw version
use std

pkg =
        type foo = struct
                bar : uint32
        ;;
;;

const main = {
        var a : foo = [.bar = 158747960]
        call_me(a)

        /*
         * If argument alignment is not respected, the above will stuff
         * all eight bytes of %rdi into four bytes of stack, and the
         * overflow will clobber enough to cause a segfault. Explicitly
         * exiting via std.exit(0) will mask this failure, however.
         */
}


const call_me = { a : foo
        -> void
}