Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Reland "[WebAssembly] Handle multiple loads of splatted loads" | Thomas Lively | 2019-10-31 | 1 | -0/+21 |
| | | | | | This reverts commit 92a25fbf11da51c8e3573b81a877d3b226990c07 and fixes the ambiguous method call that was causing build failures. | ||||
* | Revert "[WebAssembly] Handle multiple loads of splatted loads" | Vlad Tsyrklevich | 2019-10-31 | 1 | -21/+0 |
| | | | | | | | This reverts commit 2ab1b8c1ec452fb743f6cc5051e75a01039cabfe, it is causing build failures on numerous bots, including sanitizer-x86_64-linux-bootstrap-ubsan. My previous revert was for the wrong commit. | ||||
* | [WebAssembly] Handle multiple loads of splatted loads | Thomas Lively | 2019-10-31 | 1 | -0/+21 |
Summary: Fixes an ISel failure when a splatted load is used more than once. The failure was due to the hacks we were doing in ISel lowering to preserve the original load as the operand of a LOAD_SPLAT node. The fix is to properly lower the splatted use of the load to a separate LOAD_SPLAT node. Reviewers: aheejin Subscribers: dschuff, sbc100, jgravelle-google, hiraditya, sunfish, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D69640 |