diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-08-11 00:03:28 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-08-11 00:03:28 +0000 |
commit | 629d8e6f18922a2c0a9df6b59ab8ac2bdeb16d2f (patch) | |
tree | f42c2c50e26dd10c2a2e0245850d0ebfc6bc278c /clang/lib/Frontend/CompilerInstance.cpp | |
parent | c5d35ba009cce62e5411ab640e87951cb0ed91f1 (diff) | |
download | bcm5719-llvm-629d8e6f18922a2c0a9df6b59ab8ac2bdeb16d2f.tar.gz bcm5719-llvm-629d8e6f18922a2c0a9df6b59ab8ac2bdeb16d2f.zip |
Fix some tabs.
llvm-svn: 244537
Diffstat (limited to 'clang/lib/Frontend/CompilerInstance.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInstance.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/clang/lib/Frontend/CompilerInstance.cpp b/clang/lib/Frontend/CompilerInstance.cpp index 740f1db825f..33a330d3171 100644 --- a/clang/lib/Frontend/CompilerInstance.cpp +++ b/clang/lib/Frontend/CompilerInstance.cpp @@ -1631,11 +1631,10 @@ GlobalModuleIndex *CompilerInstance::loadGlobalModuleIndex( if (!Entry) { SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> Path; Path.push_back(std::make_pair( - getPreprocessor().getIdentifierInfo(TheModule->Name), TriggerLoc)); + getPreprocessor().getIdentifierInfo(TheModule->Name), TriggerLoc)); std::reverse(Path.begin(), Path.end()); - // Load a module as hidden. This also adds it to the global index. - loadModule(TheModule->DefinitionLoc, Path, - Module::Hidden, false); + // Load a module as hidden. This also adds it to the global index. + loadModule(TheModule->DefinitionLoc, Path, Module::Hidden, false); RecreateIndex = true; } } |