Cardinal checking sometimes produced wrong error message

This commit is contained in:
ceriel 1992-05-11 09:50:21 +00:00
parent bc42e31518
commit f4cc095863

View file

@ -53,13 +53,13 @@ mululchk(a,b)
subuchk(a,b) subuchk(a,b)
unsigned a,b; unsigned a,b;
{ {
if (b < a) TRP(M2_UOVFL); if (b < a) TRP(M2_UUVFL);
} }
#if EM_WSIZE < EM_LSIZE #if EM_WSIZE < EM_LSIZE
subulchk(a,b) subulchk(a,b)
unsigned long a,b; unsigned long a,b;
{ {
if (b < a) TRP(M2_UOVFL); if (b < a) TRP(M2_UUVFL);
} }
#endif #endif