git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62974 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-01-25 22:02:19 +00:00
Родитель 4433aafbc2
Коммит 23f2c583c5
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -354,7 +354,7 @@ void RewriteBlocks::HandleTopLevelDecl(Decl *D) {
RewriteProtocolDecl(PD);
// If we have a decl in the main file, see if we should rewrite it.
if (SM->getDecomposedFileLoc(Loc).first == MainFileID)
if (SM->isFromMainFile(Loc))
HandleDeclInMainFile(D);
return;
}