summaryrefslogtreecommitdiff
path: root/src/mixed_arena.h
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-24 15:07:47 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-24 15:09:49 -0800
commit83cd8a4e2618e2883c97fc3a2fe58b544f8bf778 (patch)
treee8cadfd3c00f461e66c5eba2c8781eda1c5345bf /src/mixed_arena.h
parente97c5c94c14e83ff7535bafb80a9ae0bae332030 (diff)
downloadbinaryen-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.h11
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