view tests/mini/asm3.d @ 863:6c850977a941

modified gen/linker.cpp to only append .exe suffix on windows if not already present
author elrood
date Thu, 18 Dec 2008 19:24:33 +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;
        }
    }

}