annotate nocompile/a/asm_fnsave_02_K.d @ 856:7b2c5a101190

meta data maintenance
author thomask
date Sun, 19 Feb 2006 12:16:35 +0000
parents a35e4f0a9049
children 25f3e72bf814
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
856
7b2c5a101190 meta data maintenance
thomask
parents: 715
diff changeset
1 // $HeadURL$
7b2c5a101190 meta data maintenance
thomask
parents: 715
diff changeset
2 // $Date$
7b2c5a101190 meta data maintenance
thomask
parents: 715
diff changeset
3 // $Author$
715
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_fnsave_02_K;
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 cdouble 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 fnsave 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 }