view tests/mini/asm1.d @ 838:94ba810ea2b0

Fixed problem with nested function inside static nested function. see mini/compile_nested2.d. fixes #143 .
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 09 Dec 2008 14:57:01 +0100
parents a58784e0f035
children 4c524d80e6e1
line wrap: on
line source

module asm1;

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

void main()
{
    version(LLVM_InlineAsm_X86)
    {
	int x;
	asm
	{
	    mov EAX, 42;
	    mov x, EAX;
	}
	printf("x = %d\n", x);
    }
    else version(LLVM_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");
    }
}