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

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

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

module dstress.run.a.asm_not_02_A;

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

version(runTest){
	int main(){
		uint i;

		asm{
			mov EAX, 0x12_FE_34_DC;
			mov AL, 0b0110_1110;
			not AL;
			mov i, EAX;
		}

		if(i != (0x12_FE_34_00 | 0b1001_0001)){
			assert(0);
		}

		return 0;
	}
}else{
	pragma(msg, "DSTRESS{XFAIL}: no inline ASM support");
	static assert(0);
}