Rename wasmstandalone::StandaloneRuntime to wasmstandalone::Runtime.

This commit is contained in:
Dan Gohman
2017-10-03 12:59:43 -07:00
parent db88701eaa
commit 865a3d9f31
6 changed files with 16 additions and 16 deletions

View File

@@ -91,7 +91,7 @@ fn handle_module(path: PathBuf, output: &str) -> Result<(), String> {
});
let isa = isa_builder.finish(settings::Flags::new(&flag_builder));
let mut runtime = wasmstandalone::StandaloneRuntime::with_flags(isa.flags().clone());
let mut runtime = wasmstandalone::Runtime::with_flags(isa.flags().clone());
let translation = {
match translate_module(&data, &mut runtime) {