annotate nocompile/a/asm_fsave_02_H.d @ 715:a35e4f0a9049

partial iasm FPU review
author thomask
date Fri, 28 Oct 2005 21:22:25 +0000
parents
children 7b2c5a101190
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
715
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
1 // $HeadURL: svn://dstress.kuehne.cn/run/a/asm_sub_01_C.d $
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
2 // $Date: 2005-08-20 20:24:41 +0200 (Sat, 20 Aug 2005) $
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
3 // $Author: thomask $
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
4
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
5 // __DSTRESS_ELINE__ 14
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
6
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
7 module dstress.nocompile.a.asm_fsave_02_H;
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
8
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
9 void main(){
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
10 version(D_InlineAsm){
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
11 cfloat x;
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
12
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
13 asm{
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
14 fsave x;
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
15 }
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
16 }
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
17 }