diff options
author | JF Bastien <github@jfbastien.com> | 2015-12-30 09:30:21 -0800 |
---|---|---|
committer | JF Bastien <github@jfbastien.com> | 2015-12-30 09:30:21 -0800 |
commit | 9ab2086e41da78925826d22bb5020c2962a8ae0b (patch) | |
tree | 802265db709fb02ce2ae623d68bc2a8599067c82 | |
parent | c34dd278a73ecb34fb10825f238ef98d394e4f0b (diff) | |
download | binaryen-9ab2086e41da78925826d22bb5020c2962a8ae0b.tar.gz binaryen-9ab2086e41da78925826d22bb5020c2962a8ae0b.tar.bz2 binaryen-9ab2086e41da78925826d22bb5020c2962a8ae0b.zip |
Typo
-rw-r--r-- | src/wasm-binary.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-binary.h b/src/wasm-binary.h index 12d1a2083..76a9b62be 100644 --- a/src/wasm-binary.h +++ b/src/wasm-binary.h @@ -328,7 +328,7 @@ public: size_t index = function->params.size(); Name name = local.name; WasmType type = local.type; - currLocalsByType[type]++; // increment now for simplicity, must decremebt it in returns + currLocalsByType[type]++; // increment now for simplicity, must decrement it in returns if (type == i32) { mappedLocals[name] = index + currLocalsByType[i32] - 1; break; |