Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [ARM] Reegenerate MVE tests. NFC | David Green | 2020-01-15 | 1 | -13/+15 |
| | | | | | | The mve-phireg.ll test no longer really tests what it was added for, but the original case was fairly complex. I've left the test in as a general codegen test. | ||||
* | [ARM][MVE] VTP Block Pass fix | Sjoerd Meijer | 2020-01-14 | 1 | -0/+88 |
Fix a missing and broken test: 2 VPT blocks predicated on the same VCMP instruction that can be folded. The problem was that for each VPT block, we record the predicate statements with a list, but the same instruction was added twice. Thus, we were running in an assert trying to remove the same instruction twice. To avoid this the instructions are now recorded with a set. Differential Revision: https://reviews.llvm.org/D72699 |