annotate nocompile/a/asm_fnstcw_02_B.d @ 1394:25f3e72bf814

div. inline asm fixes
author thomask
date Thu, 08 Mar 2007 16:21:59 +0000
parents 7b2c5a101190
children a62d2a1c5f14
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__ 15
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_fnstcw_02_B;
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
8
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
9 void main(){
1394
25f3e72bf814 div. inline asm fixes
thomask
parents: 856
diff changeset
10 version(D_InlineAsm_X86){
715
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
11
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
12 int b;
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
13
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
14 asm{
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
15 fnstcw b;
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
16 }
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
17 }
a35e4f0a9049 partial iasm FPU review
thomask
parents:
diff changeset
18 }