// header.
SrcMgr::CharacteristicKind FileCharacter =
std::max(HeaderInfo.getFileDirFlavor(File),
- SourceMgr.getFileCharacteristic(getCurrentFileLexer()->getFileLoc()));
+ SourceMgr.getFileCharacteristic(getCurrentFileLexer()->getFileID()));
// Look up the file, create a File ID for it.
unsigned FileID = SourceMgr.createFileID(File, FilenameTok.getLocation(),
Lexer *TheLexer = getCurrentFileLexer();
if (TheLexer)
- CurFile = SourceMgr.getFileEntryForLoc(TheLexer->getFileLoc());
+ CurFile = SourceMgr.getFileEntryForID(TheLexer->getFileID());
// If this file is older than the file it depends on, emit a diagnostic.
const char *Result;
}
// Get the current file lexer we're looking at. Ignore _Pragma 'files' etc.
- SourceLocation FileLoc = getCurrentFileLexer()->getFileLoc();
+ unsigned FileID = getCurrentFileLexer()->getFileID();
// Mark the file as a once-only file now.
- HeaderInfo.MarkFileIncludeOnce(SourceMgr.getFileEntryForLoc(FileLoc));
+ HeaderInfo.MarkFileIncludeOnce(SourceMgr.getFileEntryForID(FileID));
}
void Preprocessor::HandlePragmaMark() {
Lexer *TheLexer = getCurrentFileLexer();
// Mark the file as a system header.
- const FileEntry *File = SourceMgr.getFileEntryForLoc(TheLexer->getFileLoc());
+ const FileEntry *File = SourceMgr.getFileEntryForID(TheLexer->getFileID());
HeaderInfo.MarkFileSystemHeader(File);
// Notify the client, if desired, that we are in a new source file.
return;
}
- SourceLocation FileLoc = getCurrentFileLexer()->getFileLoc();
- const FileEntry *CurFile = SourceMgr.getFileEntryForLoc(FileLoc);
+ unsigned FileID = getCurrentFileLexer()->getFileID();
+ const FileEntry *CurFile = SourceMgr.getFileEntryForID(FileID);
// If this file is older than the file it depends on, emit a diagnostic.
if (CurFile && CurFile->getModificationTime() < File->getModificationTime()) {