only notify callbacks if they exist.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62334 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-01-16 19:01:46 +00:00
Родитель a9d9145741
Коммит 172e336b12
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -400,7 +400,8 @@ void Preprocessor::HandlePragmaComment(Token &Tok) {
}
// If the pragma is lexically sound, notify any interested PPCallbacks.
Callbacks->PragmaComment(CommentLoc, II, ArgumentString);
if (Callbacks)
Callbacks->PragmaComment(CommentLoc, II, ArgumentString);
}