allocator replacement

This commit is contained in:
NikVolf
2017-04-27 21:21:10 +03:00
parent b50eeb046d
commit 6238c1ce91
5 changed files with 145 additions and 1 deletions
+1 -1
View File
@@ -240,7 +240,7 @@ fn main() {
// which in turn compile in unused imports and leaves unused functions
// List of exports that are actually used in the managed code
let used_exports = vec!["_call", "_malloc", "_free"];
let used_exports = vec!["_call"];
// Algo starts from the top, listing all items that should stay
let mut stay = HashSet::new();