Fixed CFU

This commit is contained in:
Ceriel Jacobs 2011-06-15 10:56:58 +02:00
parent 58613009f8
commit 2483e5723d

View file

@ -357,22 +357,22 @@ DoCFU()
wtrap(WILLCONV, EILLINS);
}
f = fpop(4L);
npush((long) f, 2L);
npush((unsigned long) f, 2L);
return;
case 44:
f = fpop(4L);
npush((long) f, 4L);
npush((unsigned long) f, 4L);
return;
case 82:
if (wsize == 4) {
wtrap(WILLCONV, EILLINS);
}
f = fpop(8L);
npush((long) f, 2L);
npush((unsigned long) f, 2L);
return;
case 84:
f = fpop(8L);
npush((long) f, 4L);
npush((unsigned long) f, 4L);
return;
default:
wtrap(WILLCONV, EILLINS);