Allow -verify to be used with -rewrite-macros.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57093 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2008-10-05 01:38:39 +00:00
Родитель a6f6c71cf7
Коммит 68c59184ee
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -1020,9 +1020,6 @@ static void ParseFile(Preprocessor &PP, MinimalAction *PA) {
// Parsing the specified input file.
P.ParseTranslationUnit();
delete PA;
if (VerifyDiagnostics)
exit(CheckDiagnostics(PP));
}
//===----------------------------------------------------------------------===//
@ -1157,6 +1154,9 @@ static void ProcessInputFile(Preprocessor &PP, PreprocessorFactory &PPF,
exit(CheckASTConsumer(PP, Consumer.get()));
ParseAST(PP, Consumer.get(), Stats);
} else {
if (VerifyDiagnostics)
exit(CheckDiagnostics(PP));
}
if (Stats) {