WASM: Enable 64-bit BITS caching

Bug: webp:643
Change-Id: I4cf89575e0ebcfeaf9d84be8e188863657893a07
This commit is contained in:
wrv 2024-06-03 18:11:12 -05:00
parent 27731afd47
commit eef903d04a

View File

@ -69,6 +69,8 @@ extern "C" {
#define BITS 56
#elif defined(__mips__) // MIPS
#define BITS 24
#elif defined(__wasm__) // WASM
#define BITS 56
#else // reasonable default
#define BITS 24
#endif