Commit 654dc609 authored by nagayama15's avatar nagayama15

fix: Suppress uninitialized warning

parent cdd36cd9
...@@ -141,8 +141,8 @@ namespace wasm { ...@@ -141,8 +141,8 @@ namespace wasm {
const auto &l = *lhs.cast<Load>(); const auto &l = *lhs.cast<Load>();
const auto &r = *rhs.cast<Load>(); const auto &r = *rhs.cast<Load>();
return std::forward_as_tuple(l.type, l.bytes, l.signed_, l.offset, l.align, l.isAtomic, *l.ptr) < return std::forward_as_tuple(l.type, l.bytes, l.offset, l.align, l.isAtomic, *l.ptr) <
std::forward_as_tuple(r.type, r.bytes, r.signed_, r.offset, r.align, r.isAtomic, *r.ptr); std::forward_as_tuple(r.type, r.bytes, r.offset, r.align, r.isAtomic, *r.ptr);
} }
case Expression::Id::StoreId: { case Expression::Id::StoreId: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment