Add compilers modules

This commit is contained in:
Lachlan Sneff 2018-12-26 15:07:28 -05:00
parent 9f8798764e
commit 4f0ef7f534
3 changed files with 5 additions and 0 deletions

View File

4
src/compilers/mod.rs Normal file
View File

@ -0,0 +1,4 @@
pub mod cranelift;
pub static BACKENDS: &'static [&'static str] = &["cranelift"];

View File

@ -35,3 +35,4 @@ mod spectests;
pub mod update;
pub mod webassembly;
pub mod runtime;
pub mod compilers;