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

Heejin Ahn via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 7 20:11:01 PST 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rLLD326986: [WebAssembly] Add except_ref as a first-class type (authored by aheejin, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D43707?vs=135824&id=137542#toc

Repository:
  rLLD LLVM Linker

https://reviews.llvm.org/D43707

Files:
  wasm/WriterUtils.cpp


Index: wasm/WriterUtils.cpp
===================================================================
--- wasm/WriterUtils.cpp
+++ wasm/WriterUtils.cpp
@@ -174,6 +174,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.137542.patch
Type: text/x-patch
Size: 335 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180308/8bdf5376/attachment.bin>


More information about the llvm-commits mailing list