diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-11-03 11:51:41 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-11-03 11:51:41 -0800 |
commit | 5b30873eb082df02a79e7daa2f3aa8b59dab358a (patch) | |
tree | bcc760e939af63502508709b182018d63b2085f4 /src/wasm-js.cpp | |
parent | 8555bd445598fdcba593eef3fc4bd5e527b19068 (diff) | |
download | binaryen-5b30873eb082df02a79e7daa2f3aa8b59dab358a.tar.gz binaryen-5b30873eb082df02a79e7daa2f3aa8b59dab358a.tar.bz2 binaryen-5b30873eb082df02a79e7daa2f3aa8b59dab358a.zip |
comments
Diffstat (limited to 'src/wasm-js.cpp')
-rw-r--r-- | src/wasm-js.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/wasm-js.cpp b/src/wasm-js.cpp index ab0923fb8..4d0914f32 100644 --- a/src/wasm-js.cpp +++ b/src/wasm-js.cpp @@ -1,10 +1,8 @@ - // -// wasm intepreter for asm2wasm output, in a js environment. receives asm.js, -// generates a runnable module suitable as a polyfill. +// WebAssembly intepreter for asm2wasm output, in a js environment. // -// this polyfills an emscripten --separate-asm *.asm.js file, as a drop-in -// replacement. it writes the wasm module to Module.asm, and sets Module.buffer. +// Receives asm.js, generates a runnable module that executes the code in a WebAssembly +// interpreter. This is suitable as a polyfill for WebAssembly support in browsers. // #include <emscripten.h> |