diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2017-03-03 10:02:25 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2017-03-03 10:02:25 +0000 |
commit | ce52b80744cd23677286115c60cc13f34113f558 (patch) | |
tree | a6ee8373bcc09e5804e3d8327031916c553afbf0 /llvm/lib/Target/ARM | |
parent | e96e6972945774f96866220fe7569918346b34e5 (diff) | |
download | bcm5719-llvm-ce52b80744cd23677286115c60cc13f34113f558.tar.gz bcm5719-llvm-ce52b80744cd23677286115c60cc13f34113f558.zip |
[SDAG] Revert r296476 (and r296486, r296668, r296690).
This patch causes compile times for some patterns to explode. I have
a (large, unreduced) test case that slows down by more than 20x and
several test cases slow down by 2x. I'm sending some of the test cases
directly to Nirav and following up with more details in the review log,
but this should unblock anyone else hitting this.
llvm-svn: 296862
Diffstat (limited to 'llvm/lib/Target/ARM')
-rw-r--r-- | llvm/lib/Target/ARM/ARMISelLowering.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.h b/llvm/lib/Target/ARM/ARMISelLowering.h index b1a954c5813..a20de3b5716 100644 --- a/llvm/lib/Target/ARM/ARMISelLowering.h +++ b/llvm/lib/Target/ARM/ARMISelLowering.h @@ -500,11 +500,6 @@ class InstrItineraryData; bool canCombineStoreAndExtract(Type *VectorTy, Value *Idx, unsigned &Cost) const override; - bool canMergeStoresTo(EVT MemVT) const override { - // Do not merge to larger than i32. - return (MemVT.getSizeInBits() <= 32); - } - bool isCheapToSpeculateCttz() const override; bool isCheapToSpeculateCtlz() const override; |