Fix locals not being restored properly (which may cause us to read garbage values from the stack)

This commit is contained in:
Jef
2018-12-17 12:16:40 +01:00
parent bd2ee53c89
commit 23b5a56a7d
5 changed files with 106 additions and 84 deletions

View File

@@ -1,8 +1,9 @@
#![feature(plugin, test)]
#![feature(plugin, test, const_slice_len)]
#![plugin(dynasm)]
extern crate test;
extern crate arrayvec;
extern crate capstone;
extern crate failure;
extern crate wasmparser;