Fix undefined operation (= is not a sequence point).

This commit is contained in:
thorpej 2002-05-30 20:56:26 +00:00
parent 2335982213
commit 9a97f023a3

View File

@ -1,4 +1,4 @@
/* $NetBSD: fpu_int.c,v 1.4 2001/02/18 20:05:58 chs Exp $ */
/* $NetBSD: fpu_int.c,v 1.5 2002/05/30 20:56:26 thorpej Exp $ */
/*
* Copyright (c) 1995 Ken Nakata
@ -113,7 +113,8 @@ fpu_int(fe)
for (i = 0; i + wsh < 2; i++) {
x->fp_mant[i] = (x->fp_mant[i+wsh] << lsh) | (x->fp_mant[i+wsh+1] >> rsh);
}
x->fp_mant[i++] = (x->fp_mant[i+wsh] << lsh);
x->fp_mant[i] = (x->fp_mant[i+wsh] << lsh);
i++;
for (; i < 3; i++) {
x->fp_mant[i] = 0;
}