From 187ff8011f9dc72136ec8d953a60bdd76fbbc5ae Mon Sep 17 00:00:00 2001 From: Bill Joy Date: Tue, 26 Aug 1980 01:10:33 -0800 Subject: [PATCH] BSD 4 development Work on file usr/src/cmd/c2/jfr.mail Synthesized-from: CSRG//cd1/4.0 --- usr/src/cmd/c2/jfr.mail | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 usr/src/cmd/c2/jfr.mail diff --git a/usr/src/cmd/c2/jfr.mail b/usr/src/cmd/c2/jfr.mail new file mode 100644 index 0000000000..09538e519c --- /dev/null +++ b/usr/src/cmd/c2/jfr.mail @@ -0,0 +1,30 @@ +From vax135!jfr Tue Aug 26 15:19:15 1980 +I incorporated your changes to c2. +However, I felt that things were getting out of hand when +c2 used 7-digit numbers for labels it introduced, +when there were no local labels in the input. +[In the spirit of 16 bits, I made lgensym a 'long' array. + In the spirit of 32 bits, I changed alloc(): + n = an; + n+=sizeof(char *)-1; + n &= ~(sizeof(char *)-1); + if (lasta+n >= lastr) { +] + +Aug 26 14:18 1980 s.c20.c: -r1.34 vs. -r1.35 Page 1 + + +13c13 +< long isn = 2000000; +--- +> int isn = 20000; +17c17 +< {100000,200000,300000,400000,500000,600000,700000,800000,900000,1000000}; +--- +> {100000L,200000L,300000L,400000L,500000L,600000L,700000L,800000L,900000L,1000000L}; +131c131 +< if (isn<=p->labno) isn=1+p->labno; +--- +> if (p->labno<100000L && isn<=p->labno) isn=1+p->labno; + + -- 2.20.1