Fix MSVC "not all control paths return a value" warning. NFCI.

llvm-svn: 343765
diff --git a/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp b/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
index b7b8c4f..08c1155 100644
--- a/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
+++ b/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
@@ -250,4 +250,5 @@
   case wasm::ValType::EXCEPT_REF:
     return "except_ref";
   }
+  llvm_unreachable("Unknown wasm::ValType");
 }