[WebAssembly] Add v128 value type

Reviewers: sbc100, aheejin, dschuff

Subscribers: jgravelle-google, sunfish, llvm-commits

Differential Revision: https://reviews.llvm.org/D52106

llvm-svn: 342690
This commit is contained in:
Thomas Lively 2018-09-20 22:07:18 +00:00
parent 6f21a13675
commit d661e265c7
1 changed files with 2 additions and 0 deletions

View File

@ -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";
}