summaryrefslogtreecommitdiff
path: root/src/support/small_vector.h
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2020-03-05 15:52:44 -0800
committerGitHub <noreply@github.com>2020-03-05 15:52:44 -0800
commit9e3dbb1f668a14341e9aebae479537d4a26095a5 (patch)
tree9857d50c3373c3f6320ca3f2586bd499bc40b224 /src/support/small_vector.h
parent3a275d0627da443cce93631a64d78e7b3f441416 (diff)
downloadbinaryen-9e3dbb1f668a14341e9aebae479537d4a26095a5.tar.gz
binaryen-9e3dbb1f668a14341e9aebae479537d4a26095a5.tar.bz2
binaryen-9e3dbb1f668a14341e9aebae479537d4a26095a5.zip
Initial multivalue support (#2675)
Implements parsing and emitting of tuple creation and extraction and tuple-typed control flow for both the text and binary formats. TODO: - Extend Precompute/interpreter to handle tuple values - C and JS API support/testing - Figure out how to lower in stack IR - Fuzzing
Diffstat (limited to 'src/support/small_vector.h')
-rw-r--r--src/support/small_vector.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/support/small_vector.h b/src/support/small_vector.h
index d4ad961a7..ae2a9a3a7 100644
--- a/src/support/small_vector.h
+++ b/src/support/small_vector.h
@@ -41,6 +41,11 @@ public:
using value_type = T;
SmallVector() {}
+ SmallVector(std::initializer_list<T> init) {
+ for (T item : init) {
+ push_back(item);
+ }
+ }
T& operator[](size_t i) {
return const_cast<T&>(static_cast<const SmallVector<T, N>&>(*this)[i]);