Bump version to 0.2.0

This commit is contained in:
Dan Gohman
2019-08-20 16:05:41 -07:00
parent b4a505d5d3
commit 44367ba99a
21 changed files with 174 additions and 93 deletions

View File

@@ -270,8 +270,15 @@ fn make_trampoline(
let mut code_buf: Vec<u8> = Vec::new();
let mut reloc_sink = RelocSink {};
let mut trap_sink = binemit::NullTrapSink {};
let mut stackmap_sink = binemit::NullStackmapSink {};
context
.compile_and_emit(isa, &mut code_buf, &mut reloc_sink, &mut trap_sink)
.compile_and_emit(
isa,
&mut code_buf,
&mut reloc_sink,
&mut trap_sink,
&mut stackmap_sink,
)
.map_err(|error| SetupError::Compile(CompileError::Codegen(error)))?;
Ok(code_memory

View File

@@ -68,7 +68,6 @@ impl Into<ValidatingParserConfig> for Features {
enable_simd: self.simd,
enable_multi_value: self.multi_value,
},
mutable_global_imports: true,
}
}
}