bug fix in cstoper.c: max_long_sign was computed wrong
authorceriel <none@none>
Mon, 11 May 1987 14:19:13 +0000 (14:19 +0000)
committerceriel <none@none>
Mon, 11 May 1987 14:19:13 +0000 (14:19 +0000)
lang/cem/cemcom/cstoper.c

index d313efa..b561225 100644 (file)
@@ -229,9 +229,9 @@ init_cst()
                full_mask[i] = bt;
        }
        mach_long_size = i;
-       mach_long_sign = 1 << (mach_long_size * 8 - 1);
+       mach_long_sign = 1L << (mach_long_size * 8 - 1);
        if (long_size < mach_long_size)
                fatal("sizeof (long) insufficient on this machine");
-       max_int = full_mask[int_size] & ~(1 << (int_size * 8 - 1));
+       max_int = full_mask[int_size] & ~(1L << (int_size * 8 - 1));
        max_unsigned = full_mask[int_size];
 }