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

Thomas Lively via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 14 10:44:00 PDT 2018


tlively created this revision.
tlively added reviewers: sbc100, aheejin, dschuff.
Herald added subscribers: llvm-commits, sunfish, jgravelle-google.

Repository:
  rLLD LLVM Linker

https://reviews.llvm.org/D52106

Files:
  wasm/WriterUtils.cpp


Index: wasm/WriterUtils.cpp
===================================================================
--- wasm/WriterUtils.cpp
+++ 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.165535.patch
Type: text/x-patch
Size: 329 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180914/e5248bc1/attachment.bin>


More information about the llvm-commits mailing list