Commit 6a8c397debd815e2f9b51577900b2ade16e51c3c

Authored by bellard
1 parent 9cdf757f

FTST instruction fix


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@471 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
target-i386/op.c
... ... @@ -1903,7 +1903,7 @@ void OPPROTO op_fldz_ST0(void)
1903 1903  
1904 1904 void OPPROTO op_fldz_FT0(void)
1905 1905 {
1906   - ST0 = f15rk[0];
  1906 + FT0 = f15rk[0];
1907 1907 }
1908 1908  
1909 1909 /* associated heplers to reduce generated code length and to simplify
... ...