diff options
author | Thomas Lively <tlively@google.com> | 2018-09-20 22:04:44 +0000 |
---|---|---|
committer | Thomas Lively <tlively@google.com> | 2018-09-20 22:04:44 +0000 |
commit | 6f21a136755e5bce0c58a8f0fab56612821390ba (patch) | |
tree | de10d36095130a539991be29371ede750981c958 /llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp | |
parent | b320ca264216cb09d70927792f6f3d04bca7f58b (diff) | |
download | bcm5719-llvm-6f21a136755e5bce0c58a8f0fab56612821390ba.tar.gz bcm5719-llvm-6f21a136755e5bce0c58a8f0fab56612821390ba.zip |
[WebAssembly] Add V128 value type to binary format
Summary: Adds the necessary support to lib/ObjectYAML and fixes SIMD
calls to allow the tests to work. Also removes some dead code that
would otherwise have to have been updated.
Reviewers: aheejin, dschuff, sbc100
Subscribers: jgravelle-google, sunfish, llvm-commits
Differential Revision: https://reviews.llvm.org/D52105
llvm-svn: 342689
Diffstat (limited to 'llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp b/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp index db4fb5c75b5..c55308ba116 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp +++ b/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp @@ -149,6 +149,8 @@ static wasm::ValType getType(const TargetRegisterClass *RC) { return wasm::ValType::F32; if (RC == &WebAssembly::F64RegClass) return wasm::ValType::F64; + if (RC == &WebAssembly::V128RegClass) + return wasm::ValType::V128; llvm_unreachable("Unexpected register class"); } |