|
|
|
|
|
by Joker_vD
9 days ago
|
|
> i've also been reading the c89 rationale document, and the source code for the 7th edition unix c compiler. > the original c compiler was a single-pass compiler. No it was not. It was a two-pass compiler. > that was a necessity for a heavily memory-constrainted system like the ones they were working with. Again, no. In fact, the compiler had two passes because of the memory constraints: it was impossible to fit the code (and the working data) for both passes into memory, so it was split, and the passes communicated by the way of temporary disk files. The same thing is true for the UNIX's as(1) assembler, it also had two passes. |
|