view run/a/asm_pi2fd_01_A.d @ 984:9acd7becc753

added 3DNow! tests - all of them are broken, see http://d.puremagic.com/bugzilla/show_bug.cgi?id=115
author thomask
date Mon, 01 May 2006 14:38:44 +0000
parents
children f34b7d4a2db7
line wrap: on
line source

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

module dstress.run.a.asm_pi2fd_01_A;

int main(){
	version(D_InlineAsm_X86){
		const int[2] A = [6, 2];
		float[2] b;

		asm{
			movq MM1, A;
			pi2fd MM0, MM1;
			movq b, MM0;
		}

		if(b[0] != 6.0f){
			assert(0);
		}

		if(b[1] != 2.0f){
			assert(0);
		}

		return 0;
	}else{
		pragma(msg, "no Inline asm support");
		static assert(0);
	}
}