diff options
author | Chris Lattner <sabre@nondot.org> | 2008-09-26 21:18:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-09-26 21:18:42 +0000 |
commit | b03dc76499b82237af88f2654d7749ee711fb008 (patch) | |
tree | 073907e587c3642963d14018f53e21a13757a025 /clang/lib/Basic/SourceManager.cpp | |
parent | 94cefefcbb9e0e1603ff83ded8f22c4fc8b2155f (diff) | |
download | bcm5719-llvm-b03dc76499b82237af88f2654d7749ee711fb008.tar.gz bcm5719-llvm-b03dc76499b82237af88f2654d7749ee711fb008.zip |
clean up a bunch of fixme's I added, by moving
DirectoryLookup::DirType into SourceManager.h
llvm-svn: 56692
Diffstat (limited to 'clang/lib/Basic/SourceManager.cpp')
-rw-r--r-- | clang/lib/Basic/SourceManager.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Basic/SourceManager.cpp b/clang/lib/Basic/SourceManager.cpp index 66a85146a10..1a072fccaa0 100644 --- a/clang/lib/Basic/SourceManager.cpp +++ b/clang/lib/Basic/SourceManager.cpp @@ -76,14 +76,14 @@ SourceManager::createMemBufferContentCache(const MemoryBuffer *Buffer) { /// corresponds to a file or some other input source. unsigned SourceManager::createFileID(const ContentCache *File, SourceLocation IncludePos, - unsigned DirCharacter) { + SrcMgr::Characteristic_t FileCharacter) { // If FileEnt is really large (e.g. it's a large .i file), we may not be able // to fit an arbitrary position in the file in the FilePos field. To handle // this, we create one FileID for each chunk of the file that fits in a // FilePos field. unsigned FileSize = File->Buffer->getBufferSize(); if (FileSize+1 < (1 << SourceLocation::FilePosBits)) { - FileIDs.push_back(FileIDInfo::get(IncludePos, 0, File, DirCharacter)); + FileIDs.push_back(FileIDInfo::get(IncludePos, 0, File, FileCharacter)); assert(FileIDs.size() < (1 << SourceLocation::FileIDBits) && "Ran out of file ID's!"); return FileIDs.size(); @@ -95,7 +95,7 @@ unsigned SourceManager::createFileID(const ContentCache *File, unsigned ChunkNo = 0; while (1) { FileIDs.push_back(FileIDInfo::get(IncludePos, ChunkNo++, File, - DirCharacter)); + FileCharacter)); if (FileSize+1 < (1 << SourceLocation::FilePosBits)) break; FileSize -= (1 << SourceLocation::FilePosBits); |