[PATCH] D43707: [WebAssembly] Add except_ref as a first-class type

Heejin Ahn via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 25 06:44:57 PST 2018


aheejin updated this revision to Diff 135824.
aheejin added a comment.

rebase


Repository:
  rLLD LLVM Linker

https://reviews.llvm.org/D43707

Files:
  wasm/WriterUtils.cpp


Index: wasm/WriterUtils.cpp
===================================================================
--- wasm/WriterUtils.cpp
+++ wasm/WriterUtils.cpp
@@ -172,6 +172,8 @@
     return "F32";
   case ValType::F64:
     return "F64";
+  case ValType::EXCEPT_REF:
+    return "except_ref";
   }
   llvm_unreachable("Invalid wasm::ValType");
 }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D43707.135824.patch
Type: text/x-patch
Size: 335 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180225/42c8d98c/attachment.bin>


More information about the llvm-commits mailing list