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

Thomas Lively via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 14 13:47:43 PDT 2018


tlively updated this revision to Diff 165582.
tlively marked an inline comment as done.
tlively added a comment.

- Capitalize


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.165582.patch
Type: text/x-patch
Size: 329 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180914/4dd500ba/attachment.bin>


More information about the llvm-commits mailing list