[PATCH] D52106: [WebAssembly] Add v128 value type

Thomas Lively via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 20 15:10:46 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL342690: [WebAssembly] Add v128 value type (authored by tlively, committed by ).

Repository:
  rL LLVM

https://reviews.llvm.org/D52106

Files:
  lld/trunk/wasm/WriterUtils.cpp


Index: lld/trunk/wasm/WriterUtils.cpp
===================================================================
--- lld/trunk/wasm/WriterUtils.cpp
+++ lld/trunk/wasm/WriterUtils.cpp
@@ -185,6 +185,8 @@
     return "F32";
   case ValType::F64:
     return "F64";
+  case ValType::V128:
+    return "V128";
   case ValType::EXCEPT_REF:
     return "except_ref";
   }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D52106.166368.patch
Type: text/x-patch
Size: 359 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180920/64a83571/attachment.bin>


More information about the llvm-commits mailing list