view tests/mini/asm4.d @ 1630:44b145be2ef5

Merge dmd 1.056.
author Robert Clipsham <robert@octarineparrot.com>
date Sat, 06 Feb 2010 15:53:52 +0000
parents 4c524d80e6e1
children
line wrap: on
line source

module tangotests.asm4;

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

void main()
{
    char* stmt = "yay!\n";
    char* fmt = "%s";
    version (D_InlineAsm_X86)
    {
	asm
    	{
		jmp L2;
   	L1:;
		jmp L3;
    	L2:;
		jmp L1;
    	L3:;
		push stmt;
        	call printf;
        	pop EAX;
    	}
    }
    else version(D_InlineAsm_X86_64)
    {
	asm
	{
		jmp L2;
   	L1:;
		jmp L3;
    	L2:;
		jmp L1;
    	L3:;	
		movq	RDI, fmt;
		movq	RSI, stmt;
		xor	AL, AL;
		call	printf;
	}
    }
    printf(fmt,stmt);
}