view tests/mini/asm1.d @ 773:5696a7167b21

Fix RawVarDecl double codegen bug. Thanks to downs for the testcase.
author Christian Kamm <kamm incasoftware de>
date Tue, 18 Nov 2008 18:07:57 +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");
    }
}