diff options
Diffstat (limited to 'src/wasm/literal.cpp')
-rw-r--r-- | src/wasm/literal.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wasm/literal.cpp b/src/wasm/literal.cpp index 205d65b84..ffb007cf3 100644 --- a/src/wasm/literal.cpp +++ b/src/wasm/literal.cpp @@ -1435,8 +1435,7 @@ Literal Literal::shuffleV8x16(const Literal& other, return Literal(bytes); } -template<Type::ValueType Ty, int Lanes> -static Literal splat(const Literal& val) { +template<Type::BasicID Ty, int Lanes> static Literal splat(const Literal& val) { assert(val.type == Ty); LaneArray<Lanes> lanes; lanes.fill(val); |