diff options
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 |