diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-11-01 19:16:37 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-11-01 19:16:37 -0800 |
commit | 90304bf9703e768fcdf87914e6117f87beea3f59 (patch) | |
tree | e13eb9d6aaf652388ea61b88667306e1ef3c1380 /src/asm2wasm.h | |
parent | c8cbfbeb8d1cc108bbb0f1a7f145a50c06059c0e (diff) | |
download | binaryen-90304bf9703e768fcdf87914e6117f87beea3f59.tar.gz binaryen-90304bf9703e768fcdf87914e6117f87beea3f59.tar.bz2 binaryen-90304bf9703e768fcdf87914e6117f87beea3f59.zip |
tell emcc to leave <1024 for our use
Diffstat (limited to 'src/asm2wasm.h')
-rw-r--r-- | src/asm2wasm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asm2wasm.h b/src/asm2wasm.h index 6cd951dbb..3aef520c3 100644 --- a/src/asm2wasm.h +++ b/src/asm2wasm.h @@ -179,7 +179,7 @@ class Asm2WasmBuilder { } public: - Asm2WasmBuilder(Module& wasm) : wasm(wasm), nextGlobal(8), maxGlobal(1000) {} + Asm2WasmBuilder(Module& wasm) : wasm(wasm), nextGlobal(8), maxGlobal(1000) {} // XXX sync with emcc void processAsm(Ref ast); void optimize(); |