diff options
Diffstat (limited to 'src/passes/Print.cpp')
-rw-r--r-- | src/passes/Print.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index f8e913079..1704e0145 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -1204,6 +1204,9 @@ struct PrintExpressionContents case MaxUVecI8x16: o << "i8x16.max_u"; break; + case AvgrUVecI8x16: + o << "i8x16.avgr_u"; + break; case AddVecI16x8: o << "i16x8.add"; break; @@ -1237,6 +1240,9 @@ struct PrintExpressionContents case MaxUVecI16x8: o << "i16x8.max_u"; break; + case AvgrUVecI16x8: + o << "i16x8.avgr_u"; + break; case AddVecI32x4: o << "i32x4.add"; break; |