1
Fork 0

Auto merge of #37373 - nnethercote:html5ever-more-more, r=nrc

Avoid more allocations when compiling html5ever

These three commits reduce the number of allocations performed when compiling html5ever from 13.2M to 10.8M, which speeds up compilation by about 2%.

r? @nrc
This commit is contained in:
bors 2016-10-28 17:02:01 -07:00 committed by GitHub
commit e9b2fcb2fe
4 changed files with 51 additions and 21 deletions

View file

@ -36,6 +36,7 @@
#![feature(specialization)]
#![feature(dotdot_in_tuple_patterns)]
extern crate core;
extern crate serialize;
extern crate term;
extern crate libc;