mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-17 20:23:59 +00:00
Remove 'using std::error_code' from tools.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210876 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -24,7 +24,6 @@
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
|
||||
using namespace llvm;
|
||||
using std::error_code;
|
||||
|
||||
static void exitWithError(const Twine &Message, StringRef Whence = "") {
|
||||
errs() << "error: ";
|
||||
@ -57,11 +56,12 @@ int merge_main(int argc, const char *argv[]) {
|
||||
InstrProfWriter Writer;
|
||||
for (const auto &Filename : Inputs) {
|
||||
std::unique_ptr<InstrProfReader> Reader;
|
||||
if (error_code ec = InstrProfReader::create(Filename, Reader))
|
||||
if (std::error_code ec = InstrProfReader::create(Filename, Reader))
|
||||
exitWithError(ec.message(), Filename);
|
||||
|
||||
for (const auto &I : *Reader)
|
||||
if (error_code EC = Writer.addFunctionCounts(I.Name, I.Hash, I.Counts))
|
||||
if (std::error_code EC =
|
||||
Writer.addFunctionCounts(I.Name, I.Hash, I.Counts))
|
||||
errs() << Filename << ": " << I.Name << ": " << EC.message() << "\n";
|
||||
if (Reader->hasError())
|
||||
exitWithError(Reader->getError().message(), Filename);
|
||||
@ -91,7 +91,7 @@ int show_main(int argc, const char *argv[]) {
|
||||
cl::ParseCommandLineOptions(argc, argv, "LLVM profile data summary\n");
|
||||
|
||||
std::unique_ptr<InstrProfReader> Reader;
|
||||
if (error_code EC = InstrProfReader::create(Filename, Reader))
|
||||
if (std::error_code EC = InstrProfReader::create(Filename, Reader))
|
||||
exitWithError(EC.message(), Filename);
|
||||
|
||||
if (OutputFilename.empty())
|
||||
|
Reference in New Issue
Block a user