diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-12-23 15:11:25 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-12-23 15:11:25 -0800 |
commit | 9ec32cf1ee5f67de5fc3782ce175ef2324b202c0 (patch) | |
tree | a73060204ecf61277681893d1b2937861a93285b /src/wasm-interpreter.h | |
parent | 8823074de217c11ad4fcbf2d21ff588c297704c2 (diff) | |
download | binaryen-9ec32cf1ee5f67de5fc3782ce175ef2324b202c0.tar.gz binaryen-9ec32cf1ee5f67de5fc3782ce175ef2324b202c0.tar.bz2 binaryen-9ec32cf1ee5f67de5fc3782ce175ef2324b202c0.zip |
fix typo
Diffstat (limited to 'src/wasm-interpreter.h')
-rw-r--r-- | src/wasm-interpreter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h index 76c3f66ba..0de094ca2 100644 --- a/src/wasm-interpreter.h +++ b/src/wasm-interpreter.h @@ -64,7 +64,7 @@ int32_t safe_ctz(int32_t v) { } int32_t platform_popcount(int32_t v) { - return __buildin_popcount(v); + return __builtin_popcount(v); } #endif |