view nocompile/a/asm_fsqrt_02_E.d @ 715:a35e4f0a9049

partial iasm FPU review
author thomask
date Fri, 28 Oct 2005 21:22:25 +0000
parents
children 7b2c5a101190
line wrap: on
line source

// $HeadURL: svn://dstress.kuehne.cn/run/a/asm_sub_01_C.d $
// $Date: 2005-08-20 20:24:41 +0200 (Sat, 20 Aug 2005) $
// $Author: thomask $

// __DSTRESS_ELINE__ 14

module dstress.nocompile.a.asm_fsqrt_02_E;

void main(){
	version(D_InlineAsm){
		float x;
		
		asm{
			fsqrt x;
		}
	}
}