Walter Bright schrieb:
Don wrote:
In this case you may have a long function, with only a single instruction right in the middle which needs to be changed.

void foo()
{
    asm
    {
        mov EAX,EAX;
    ... lots more instructions ...
    }
    version (bar) asm
    {
        mov EAX,EAX;
    }
    asm
    {
    ... even more instructions ...
        mov EAX,EAX;
    }
}

Man, it's so obvious, yet I wouldn't have hit on that ;)

Reply via email to