diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-19 07:32:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-19 07:32:13 +0000 |
commit | 31530bae788dea5c79e72a1f99a56c3f5c6aa36f (patch) | |
tree | a56d05becb403217c3d44a2ee67d3270669c0f3e /lib/Basic/SourceManager.cpp | |
parent | a90a4d4a0a365f991b92e925436ec63ef4969839 (diff) |
SourceManager::getBufferData(SourceLocation) is dead, delete it.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62495 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/SourceManager.cpp')
-rw-r--r-- | lib/Basic/SourceManager.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/Basic/SourceManager.cpp b/lib/Basic/SourceManager.cpp index b053b160e1..989c3ac1fd 100644 --- a/lib/Basic/SourceManager.cpp +++ b/lib/Basic/SourceManager.cpp @@ -180,14 +180,8 @@ SourceLocation SourceManager::getInstantiationLoc(SourceLocation SpellingLoc, return SourceLocation::getMacroLoc(MacroIDs.size()-1, 0); } -/// getBufferData - Return a pointer to the start and end of the character -/// data for the specified location. -std::pair<const char*, const char*> -SourceManager::getBufferData(SourceLocation Loc) const { - const llvm::MemoryBuffer *Buf = getBuffer(getCanonicalFileID(Loc)); - return std::make_pair(Buf->getBufferStart(), Buf->getBufferEnd()); -} - +/// getBufferData - Return a pointer to the start and end of the source buffer +/// data for the specified FileID. std::pair<const char*, const char*> SourceManager::getBufferData(FileID FID) const { const llvm::MemoryBuffer *Buf = getBuffer(FID); |