[lld] r342690 - [WebAssembly] Add v128 value type
Thomas Lively via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 20 15:07:18 PDT 2018
Author: tlively
Date: Thu Sep 20 15:07:18 2018
New Revision: 342690
URL: http://llvm.org/viewvc/llvm-project?rev=342690&view=rev
Log:
[WebAssembly] Add v128 value type
Reviewers: sbc100, aheejin, dschuff
Subscribers: jgravelle-google, sunfish, llvm-commits
Differential Revision: https://reviews.llvm.org/D52106
Modified:
lld/trunk/wasm/WriterUtils.cpp
Modified: lld/trunk/wasm/WriterUtils.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/wasm/WriterUtils.cpp?rev=342690&r1=342689&r2=342690&view=diff
==============================================================================
--- lld/trunk/wasm/WriterUtils.cpp (original)
+++ lld/trunk/wasm/WriterUtils.cpp Thu Sep 20 15:07:18 2018
@@ -185,6 +185,8 @@ std::string lld::toString(ValType Type)
return "F32";
case ValType::F64:
return "F64";
+ case ValType::V128:
+ return "V128";
case ValType::EXCEPT_REF:
return "except_ref";
}
More information about the llvm-commits
mailing list