File tree 6 files changed +22
-27
lines changed
6 files changed +22
-27
lines changed Original file line number Diff line number Diff line change @@ -245,11 +245,10 @@ bool writeFiles(const clang::Rewriter &Rewrites) {
245
245
const char *FileName =
246
246
Rewrites.getSourceMgr ().getFileEntryForID (BufferI->first )->getName ();
247
247
248
- std::string ErrorInfo;
249
-
250
- llvm::raw_fd_ostream FileStream (FileName, ErrorInfo, llvm::sys::fs::F_Text);
251
- if (!ErrorInfo.empty ()) {
252
- errs () << " Warning: Could not write to " << FileName << " \n " ;
248
+ std::error_code EC;
249
+ llvm::raw_fd_ostream FileStream (FileName, EC, llvm::sys::fs::F_Text);
250
+ if (EC) {
251
+ errs () << " Warning: Could not write to " << EC.message () << " \n " ;
253
252
continue ;
254
253
}
255
254
BufferI->second .write (FileStream);
Original file line number Diff line number Diff line change @@ -271,10 +271,9 @@ int main(int argc, char **argv) {
271
271
}
272
272
273
273
// Write new file to disk
274
- std::string ErrorInfo;
275
- llvm::raw_fd_ostream FileStream (I->getKey ().str ().c_str (), ErrorInfo,
276
- llvm::sys::fs::F_Text);
277
- if (!ErrorInfo.empty ()) {
274
+ std::error_code EC;
275
+ llvm::raw_fd_ostream FileStream (I->getKey (), EC, llvm::sys::fs::F_Text);
276
+ if (EC) {
278
277
llvm::errs () << " Could not open " << I->getKey () << " for writing\n " ;
279
278
continue ;
280
279
}
Original file line number Diff line number Diff line change @@ -50,9 +50,8 @@ void writePerfDataJSON(
50
50
SS << DirectoryName << " /" << static_cast <int >(T.getWallTime ()) << " _" << Pid
51
51
<< " .json" ;
52
52
53
- std::string ErrorInfo;
54
- llvm::raw_fd_ostream FileStream (SS.str ().c_str (), ErrorInfo,
55
- llvm::sys::fs::F_Text);
53
+ std::error_code EC;
54
+ llvm::raw_fd_ostream FileStream (SS.str (), EC, llvm::sys::fs::F_Text);
56
55
FileStream << " {\n " ;
57
56
FileStream << " \" Sources\" : [\n " ;
58
57
for (SourcePerfData::const_iterator I = TimingResults.begin (),
Original file line number Diff line number Diff line change @@ -72,11 +72,10 @@ bool ReplacementHandling::serializeReplacements(
72
72
continue ;
73
73
}
74
74
75
- std::string ErrorInfo;
76
- raw_fd_ostream ReplacementsFile (ReplacementsFileName.c_str (), ErrorInfo,
77
- fs::F_None);
78
- if (!ErrorInfo.empty ()) {
79
- errs () << " Error opening file: " << ErrorInfo << " \n " ;
75
+ std::error_code EC;
76
+ raw_fd_ostream ReplacementsFile (ReplacementsFileName, EC, fs::F_None);
77
+ if (EC) {
78
+ errs () << " Error opening file: " << EC.message () << " \n " ;
80
79
Errors = true ;
81
80
continue ;
82
81
}
Original file line number Diff line number Diff line change @@ -247,11 +247,11 @@ static bool writeModuleMap(llvm::StringRef ModuleMapPath,
247
247
}
248
248
249
249
// Set up module map output file.
250
- std::string Error ;
251
- llvm::tool_output_file Out (FilePath. c_str (), Error , llvm::sys::fs::F_Text);
252
- if (!Error. empty () ) {
253
- llvm::errs () << Argv0 << " : error opening " << FilePath << " :" << Error
254
- << " \n " ;
250
+ std::error_code EC ;
251
+ llvm::tool_output_file Out (FilePath, EC , llvm::sys::fs::F_Text);
252
+ if (EC ) {
253
+ llvm::errs () << Argv0 << " : error opening " << FilePath << " :"
254
+ << EC. message () << " \n " ;
255
255
return false ;
256
256
}
257
257
Original file line number Diff line number Diff line change @@ -212,12 +212,11 @@ int main(int Argc, const char **Argv) {
212
212
HadErrors = outputPPTrace (CallbackCalls, llvm::outs ());
213
213
} else {
214
214
// Set up output file.
215
- std::string Error;
216
- llvm::tool_output_file Out (OutputFileName.c_str (), Error,
217
- llvm::sys::fs::F_Text);
218
- if (!Error.empty ()) {
215
+ std::error_code EC;
216
+ llvm::tool_output_file Out (OutputFileName, EC, llvm::sys::fs::F_Text);
217
+ if (EC) {
219
218
llvm::errs () << " pp-trace: error creating " << OutputFileName << " :"
220
- << Error << " \n " ;
219
+ << EC. message () << " \n " ;
221
220
return 1 ;
222
221
}
223
222
You can’t perform that action at this time.
0 commit comments