Skip to content

Commit b14bd53

Browse files
committed
Update for LLVM api change
llvm-svn: 216396
1 parent 0941b56 commit b14bd53

File tree

6 files changed

+22
-27
lines changed

6 files changed

+22
-27
lines changed

clang-tools-extra/clang-apply-replacements/lib/Tooling/ApplyReplacements.cpp

+4-5
Original file line numberDiff line numberDiff line change
@@ -245,11 +245,10 @@ bool writeFiles(const clang::Rewriter &Rewrites) {
245245
const char *FileName =
246246
Rewrites.getSourceMgr().getFileEntryForID(BufferI->first)->getName();
247247

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";
253252
continue;
254253
}
255254
BufferI->second.write(FileStream);

clang-tools-extra/clang-apply-replacements/tool/ClangApplyReplacementsMain.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -271,10 +271,9 @@ int main(int argc, char **argv) {
271271
}
272272

273273
// 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) {
278277
llvm::errs() << "Could not open " << I->getKey() << " for writing\n";
279278
continue;
280279
}

clang-tools-extra/clang-modernize/Core/PerfSupport.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,8 @@ void writePerfDataJSON(
5050
SS << DirectoryName << "/" << static_cast<int>(T.getWallTime()) << "_" << Pid
5151
<< ".json";
5252

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);
5655
FileStream << "{\n";
5756
FileStream << " \"Sources\" : [\n";
5857
for (SourcePerfData::const_iterator I = TimingResults.begin(),

clang-tools-extra/clang-modernize/Core/ReplacementHandling.cpp

+4-5
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,10 @@ bool ReplacementHandling::serializeReplacements(
7272
continue;
7373
}
7474

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";
8079
Errors = true;
8180
continue;
8281
}

clang-tools-extra/modularize/ModuleAssistant.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -247,11 +247,11 @@ static bool writeModuleMap(llvm::StringRef ModuleMapPath,
247247
}
248248

249249
// 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";
255255
return false;
256256
}
257257

clang-tools-extra/pp-trace/PPTrace.cpp

+4-5
Original file line numberDiff line numberDiff line change
@@ -212,12 +212,11 @@ int main(int Argc, const char **Argv) {
212212
HadErrors = outputPPTrace(CallbackCalls, llvm::outs());
213213
} else {
214214
// 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) {
219218
llvm::errs() << "pp-trace: error creating " << OutputFileName << ":"
220-
<< Error << "\n";
219+
<< EC.message() << "\n";
221220
return 1;
222221
}
223222

0 commit comments

Comments
 (0)