view tests/mini/asm3.d @ 772:cd7da2ba14d1

Fix bug reported by downs. Related to delegate types within tuple template parameters.
author Christian Kamm <kamm incasoftware de>
date Tue, 18 Nov 2008 17:14:57 +0100
parents ef5f75ae6895
children 03d7c4aac654
line wrap: on
line source

module tangotests.asm3;

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

void main()
{
    char* fmt = "Hello D World\n";
    printf(fmt);
    version (LLVM_InlineAsm_X86)
    {
	asm
    	{
		push fmt;
        	call printf;
        	pop EAX;
    	}
    }
    else version(LLVM_InlineAsm_X86_64)
    {
        asm
        {
                movq    RDI, fmt;
                xor     AL, AL;
                call    printf;
        }
    }

}