diff options
author | Ahmed Bougacha <ahmed.bougacha@gmail.com> | 2013-07-23 17:44:11 +0000 |
---|---|---|
committer | Ahmed Bougacha <ahmed.bougacha@gmail.com> | 2013-07-23 17:44:11 +0000 |
commit | 71dc2e6f45a5b00dec24a26ab2864690cbba5ea4 (patch) | |
tree | f9f08f0398ed49efaf1e49e28e4c84ec6a41c35a /include | |
parent | b9938e1aba325281d47c1c778faa3c159d96436a (diff) | |
download | external_llvm-71dc2e6f45a5b00dec24a26ab2864690cbba5ea4.zip external_llvm-71dc2e6f45a5b00dec24a26ab2864690cbba5ea4.tar.gz external_llvm-71dc2e6f45a5b00dec24a26ab2864690cbba5ea4.tar.bz2 |
Revert "Remove use of asymmetric std::lower_bound comparator."
This reverts commit r185676.
Originally done because of VS 2008.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186969 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/MC/MCModule.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/MC/MCModule.h b/include/llvm/MC/MCModule.h index f43142b..02f8ca0 100644 --- a/include/llvm/MC/MCModule.h +++ b/include/llvm/MC/MCModule.h @@ -51,11 +51,6 @@ class MCModule { /// \brief Insert an atom in the module, using its Begin and End addresses. void map(MCAtom *NewAtom); - - /// \brief Return an iterator to the first atom that is completely or in part - /// located after \p Addr, i.e., that \p Addr is bigger than its end address. - AtomListTy::const_iterator atom_lower_bound(uint64_t Addr) const; - AtomListTy:: iterator atom_lower_bound(uint64_t Addr); /// @} /// \name Function tracking |