view run/a/asm_enter_01_B.d @ 1611:9f94be6a5ace

Fix typo in last commit.
author Christian Kamm <kamm incasoftware de>
date Sun, 10 May 2009 10:56:43 +0200
parents a468938b0160
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

module dstress.run.a.asm_enter_01_B;

version(D_InlineAsm_X86){
	version = runTest;
}else version(D_InlineAsm_X86_64){
	version = runTest;
}

int main(){
	version(runTest){
		asm{
			enter 2048, 1;
			leave;
		}
		return 0;
	}else{
		pragma(msg, "DSTRESS{XFAIL}: no inline ASM support");
		static assert(0);
	}
}