diff options
author | Nirav Dave <niravd@google.com> | 2018-10-30 18:26:43 +0000 |
---|---|---|
committer | Nirav Dave <niravd@google.com> | 2018-10-30 18:26:43 +0000 |
commit | eedd2ccd02c19c651070525627ca73432d2a06f0 (patch) | |
tree | 9a06f4b0871b1a1845ce9dc3145f59a306666073 /llvm/lib/CodeGen/SelectionDAG | |
parent | bfac17f21e5a01d0f6114d8c1d9723e1802ff7d9 (diff) | |
download | bcm5719-llvm-eedd2ccd02c19c651070525627ca73432d2a06f0.tar.gz bcm5719-llvm-eedd2ccd02c19c651070525627ca73432d2a06f0.zip |
[DAG] Add const variants for BaseIndexOffset functions.
llvm-svn: 345623
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp index c859f16e74f..8c57f18183e 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp @@ -19,8 +19,9 @@ using namespace llvm; -bool BaseIndexOffset::equalBaseIndex(BaseIndexOffset &Other, - const SelectionDAG &DAG, int64_t &Off) { +bool BaseIndexOffset::equalBaseIndex(const BaseIndexOffset &Other, + const SelectionDAG &DAG, + int64_t &Off) const { // Conservatively fail if we a match failed.. if (!Base.getNode() || !Other.Base.getNode()) return false; @@ -75,7 +76,7 @@ bool BaseIndexOffset::equalBaseIndex(BaseIndexOffset &Other, } /// Parses tree in Ptr for base, index, offset addresses. -BaseIndexOffset BaseIndexOffset::match(LSBaseSDNode *N, +BaseIndexOffset BaseIndexOffset::match(const LSBaseSDNode *N, const SelectionDAG &DAG) { SDValue Ptr = N->getBasePtr(); |