From 91e054a308469cc8a3355dc4c66a5f96cb168765 Mon Sep 17 00:00:00 2001 From: Jan Wassenberg Date: Thu, 31 Dec 2020 06:37:53 -0800 Subject: [PATCH] Fix wasm return type PiperOrigin-RevId: 349675619 --- hwy/ops/wasm_128-inl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hwy/ops/wasm_128-inl.h b/hwy/ops/wasm_128-inl.h index 772876c9bb..5cbda18e11 100644 --- a/hwy/ops/wasm_128-inl.h +++ b/hwy/ops/wasm_128-inl.h @@ -1441,7 +1441,7 @@ HWY_API Vec128 TableLookupBytes(const Vec128 bytes, for (size_t i = 0; i < 16; ++i) { output[i] = input[control[i]]; } - return Vec128{wasm_v128_load(output)}; + return Vec128{wasm_v128_load(output)}; } // ------------------------------ Hard-coded shuffles