diff options
Diffstat (limited to 'clang/lib/Basic/SourceManager.cpp')
-rw-r--r-- | clang/lib/Basic/SourceManager.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/Basic/SourceManager.cpp b/clang/lib/Basic/SourceManager.cpp index 38545d1..24e4aef 100644 --- a/clang/lib/Basic/SourceManager.cpp +++ b/clang/lib/Basic/SourceManager.cpp @@ -1795,11 +1795,11 @@ void SourceManager::computeMacroArgsCache(MacroArgsMap &MacroArgsCache, if (Entry.getFile().NumCreatedFIDs) ID += Entry.getFile().NumCreatedFIDs - 1 /*because of next ++ID*/; continue; - } else if (IncludeLoc.isValid()) { - // If file was included but not from FID, there is no more files/macros - // that may be "contained" in this file. - return; } + // If file was included but not from FID, there is no more files/macros + // that may be "contained" in this file. + if (IncludeLoc.isValid()) + return; continue; } |