diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-11-24 15:07:47 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-11-24 15:09:49 -0800 |
commit | 83cd8a4e2618e2883c97fc3a2fe58b544f8bf778 (patch) | |
tree | e8cadfd3c00f461e66c5eba2c8781eda1c5345bf /src/mixed_arena.h | |
parent | e97c5c94c14e83ff7535bafb80a9ae0bae332030 (diff) | |
download | binaryen-83cd8a4e2618e2883c97fc3a2fe58b544f8bf778.tar.gz binaryen-83cd8a4e2618e2883c97fc3a2fe58b544f8bf778.tar.bz2 binaryen-83cd8a4e2618e2883c97fc3a2fe58b544f8bf778.zip |
create an AllocatingModule which handles allocation for its elements
Diffstat (limited to 'src/mixed_arena.h')
-rw-r--r-- | src/mixed_arena.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mixed_arena.h b/src/mixed_arena.h index 4d0d85c67..b2fbe06a6 100644 --- a/src/mixed_arena.h +++ b/src/mixed_arena.h @@ -41,5 +41,16 @@ struct MixedArena { extern MixedArena globalAllocator; +#ifdef __wasm_h__ +namespace wasm { + +class AllocatingModule : public Module { +public: + MixedArena allocator; +}; + +} +#endif + #endif // mixed_arena_h |