view tests/mini/naked_asm3.d @ 943:95d09451cb59

Reverted the template instantiation changes from rev [940]. Wasn't safe it seems :(
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Thu, 05 Feb 2009 18:17:42 +0100
parents bbb3f23908aa
children
line wrap: on
line source

int foo()
{
    enum { fourty2 = 42 }
    version(X86)
    asm
    {
        naked;
        mov EAX, fourty2;
        ret;
    }
    else version(X86_64)
    asm
    {
        naked;
        mov EAX, fourty2;
        ret;
    }
    else static assert(0, "todo");
}

void main()
{
    int i = foo();
    printf("i == %d\n", i);
    assert(i == 42);
}

extern(C) int printf(char*, ...);