Remove a FIXME that's not planned to be fixed. We only generated crash

diagnostics for the first failing command.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@178086 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chad Rosier 2013-03-26 23:25:41 +00:00
Родитель e79ce292d9
Коммит 7020346e41
1 изменённых файлов: 0 добавлений и 3 удалений

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

@ -489,9 +489,6 @@ int main(int argc_, const char **argv_) {
// In these cases, generate additional diagnostic information if possible. // In these cases, generate additional diagnostic information if possible.
if (CommandRes < 0 || CommandRes == 70) { if (CommandRes < 0 || CommandRes == 70) {
TheDriver.generateCompilationDiagnostics(*C, FailingCommand); TheDriver.generateCompilationDiagnostics(*C, FailingCommand);
// FIXME: generateCompilationDiagnostics() needs to be tested when there
// are multiple failing commands.
break; break;
} }
} }