Reformat.

llvm-svn: 234731
This commit is contained in:
NAKAMURA Takumi 2015-04-13 08:43:40 +00:00
parent 90a4877e31
commit 5594d7926d
1 changed files with 3 additions and 3 deletions

View File

@ -605,9 +605,9 @@ void GeneratePTHAction::ExecuteAction() {
// FIXME: Verify that we can actually seek in the given file.
llvm::report_fatal_error("PTH requires a seekable file for output!");
}
llvm::raw_fd_ostream *OS =
CI.createDefaultOutputFile(true, getCurrentFile());
if (!OS) return;
llvm::raw_fd_ostream *OS = CI.createDefaultOutputFile(true, getCurrentFile());
if (!OS)
return;
CacheTokens(CI.getPreprocessor(), OS);
}