Arena allocate and cache type representations.

This commit is contained in:
Scott Olson
2016-03-17 05:32:00 -06:00
parent 432619ea5e
commit 19bf6eec6b
2 changed files with 46 additions and 15 deletions

View File

@@ -1,10 +1,15 @@
#![feature(btree_range, collections_bound, rustc_private)]
extern crate byteorder;
// From rustc.
extern crate arena;
extern crate rustc;
extern crate rustc_data_structures;
extern crate rustc_mir;
extern crate syntax;
// From crates.io.
extern crate byteorder;
mod error;
pub mod interpreter;
mod memory;