diff options
author | Mehdi Amini <mehdi.amini@apple.com> | 2016-11-11 04:28:40 +0000 |
---|---|---|
committer | Mehdi Amini <mehdi.amini@apple.com> | 2016-11-11 04:28:40 +0000 |
commit | 41af43092ccc8030bb49cea324d85eecd5ae68a8 (patch) | |
tree | f30038673dd27f2d4785068fffd510abe4fb23d7 /llvm/tools/llvm-dwp/llvm-dwp.cpp | |
parent | e8e98dcb74cd6d297c31c023bfacdf7f28cdaabc (diff) | |
download | bcm5719-llvm-41af43092ccc8030bb49cea324d85eecd5ae68a8.tar.gz bcm5719-llvm-41af43092ccc8030bb49cea324d85eecd5ae68a8.zip |
Make the Error class constructor protected
This is forcing to use Error::success(), which is in a wide majority
of cases a lot more readable.
Differential Revision: https://reviews.llvm.org/D26481
llvm-svn: 286561
Diffstat (limited to 'llvm/tools/llvm-dwp/llvm-dwp.cpp')
-rw-r--r-- | llvm/tools/llvm-dwp/llvm-dwp.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/tools/llvm-dwp/llvm-dwp.cpp b/llvm/tools/llvm-dwp/llvm-dwp.cpp index b1ec5035038..5ee620a77b0 100644 --- a/llvm/tools/llvm-dwp/llvm-dwp.cpp +++ b/llvm/tools/llvm-dwp/llvm-dwp.cpp @@ -364,7 +364,7 @@ static Error handleCompressedSection( std::deque<SmallString<32>> &UncompressedSections, StringRef &Name, StringRef &Contents) { if (!Name.startswith("zdebug_")) - return Error(); + return Error::success(); UncompressedSections.emplace_back(); uint64_t OriginalSize; if (!zlib::isAvailable()) @@ -377,7 +377,7 @@ static Error handleCompressedSection( .str()); Name = Name.substr(1); Contents = UncompressedSections.back(); - return Error(); + return Error::success(); } static Error handleSection( @@ -392,10 +392,10 @@ static Error handleSection( StringRef &AbbrevSection, StringRef &CurCUIndexSection, StringRef &CurTUIndexSection) { if (Section.isBSS()) - return Error(); + return Error::success(); if (Section.isVirtual()) - return Error(); + return Error::success(); StringRef Name; if (std::error_code Err = Section.getName(Name)) @@ -412,7 +412,7 @@ static Error handleSection( auto SectionPair = KnownSections.find(Name); if (SectionPair == KnownSections.end()) - return Error(); + return Error::success(); if (DWARFSectionKind Kind = SectionPair->second.second) { auto Index = Kind - DW_SECT_INFO; @@ -449,7 +449,7 @@ static Error handleSection( Out.SwitchSection(OutSection); Out.EmitBytes(Contents); } - return Error(); + return Error::success(); } static Error @@ -600,7 +600,7 @@ static Error write(MCStreamer &Out, ArrayRef<std::string> Inputs) { writeIndex(Out, MCOFI.getDwarfCUIndexSection(), ContributionOffsets, IndexEntries); - return Error(); + return Error::success(); } static int error(const Twine &Error, const Twine &Context) { |