https://issues.dlang.org/show_bug.cgi?id=23347

Walter Bright <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #2 from Walter Bright <[email protected]> ---
A simpler repro:

void fork() asm("plugh");

#pragma pack(push, 4)
void spoon() asm("xyzzy");
#pragma pack(pop);

void test()
{
    fork();  // calls plugh
    spoon(); // calls spoon
}

--

Reply via email to