|
|
|
|
|
by josephg
668 days ago
|
|
Smaller? Yes. Faster? Almost certainly not. It really doesn't make sense to optimize anything in a bootstrapping compiler. Usually the only code that will ever be compiled by this compiler will be rustc itself. And rustc doesn't need to run fast - just fast enough to recompile itself. So, the output also probably won't have any optimisations applied either. |
|