view tests/mini/asm1.d @ 1638:0de4525a9ed6

Apply workaround for #395 by klickverbot.
author Christian Kamm <kamm incasoftware de>
date Mon, 08 Mar 2010 20:06:08 +0100
parents 4c524d80e6e1
children
line wrap: on
line source

module asm1;

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

void main()
{
    version(D_InlineAsm_X86)
    {
	int x;
	asm
	{
	    mov EAX, 42;
	    mov x, EAX;
	}
	printf("x = %d\n", x);
    }
    else version(D_InlineAsm_X86_64)
    {
        long x;
        asm
        {
            movq RAX, 42L;
            movq x, RAX;
        }
        printf("x = %ld\n", x);
    }
    else
    {
        static assert(0, "no inline asm for this platform yet");
    }
}