summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
index d5980919d03..544da362be6 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
@@ -37,23 +37,6 @@ bool BaseIndexOffset::equalBaseIndex(BaseIndexOffset &Other,
return true;
}
- // Match Constants
- if (auto *A = dyn_cast<ConstantPoolSDNode>(Base))
- if (auto *B = dyn_cast<ConstantPoolSDNode>(Other.Base)) {
- bool IsMatch =
- A->isMachineConstantPoolEntry() == B->isMachineConstantPoolEntry();
- if (IsMatch) {
- if (A->isMachineConstantPoolEntry())
- IsMatch = A->getMachineCPVal() == B->getMachineCPVal();
- else
- IsMatch = A->getConstVal() == B->getConstVal();
- }
- if (IsMatch) {
- Off += B->getOffset() - A->getOffset();
- return true;
- }
- }
-
const MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo();
// Match non-equal FrameIndexes - If both frame indices are fixed
OpenPOWER on IntegriCloud