summaryrefslogtreecommitdiff
path: root/src/support/small_vector.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/support/small_vector.h')
-rw-r--r--src/support/small_vector.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/support/small_vector.h b/src/support/small_vector.h
index 9ef90d83a..19ceb8697 100644
--- a/src/support/small_vector.h
+++ b/src/support/small_vector.h
@@ -29,6 +29,16 @@
namespace wasm {
+// We don't understand this warning, only here and only on aarch64,
+// we suspect it's spurious so disabling for now.
+//
+// For context: https://github.com/WebAssembly/binaryen/issues/6311
+
+#if defined(__aarch64__)
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
+#endif
+
template<typename T, size_t N> class SmallVector {
// fixed-space storage
size_t usedFixed = 0;
@@ -37,6 +47,10 @@ template<typename T, size_t N> class SmallVector {
// flexible additional storage
std::vector<T> flexible;
+#if defined(__aarch64__)
+#pragma GCC diagnostic pop
+#endif
+
public:
using value_type = T;