view run/a/asm_cmc_01.d @ 1386:7a397590d6e0

64-bit fixes
author thomask
date Wed, 07 Mar 2007 23:10:27 +0000
parents 3c1400d94f60
children
line wrap: on
line source

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

module dstress.run.a.asm_cmc_01;

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

version(runTest){
	int main(){
		byte a = 0;

		asm{
			clc;
			cmc;
			jnc error;
			stc;
			cmc;
			jc error;
		}


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