view nocompile/a/asm_fsqrt_02_C.d @ 856:7b2c5a101190

meta data maintenance
author thomask
date Sun, 19 Feb 2006 12:16:35 +0000
parents a35e4f0a9049
children 25f3e72bf814
line wrap: on
line source

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

// __DSTRESS_ELINE__ 14

module dstress.nocompile.a.asm_fsqrt_02_C;

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