forked from OSchip/llvm-project
[llvm-profdata] Use SmallSet rather that std::set for keeping track of profdata merge errors
Missed bit of feedback from D14720. Use SmallSet<std::error_code> rather than std::set<...> in order to be more efficient. llvm-svn: 253474
This commit is contained in:
parent
34e0bd40e4
commit
c21a44da1e
|
@ -11,6 +11,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/ADT/SmallSet.h"
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
#include "llvm/IR/LLVMContext.h"
|
||||
#include "llvm/ProfileData/InstrProfReader.h"
|
||||
|
@ -27,8 +28,6 @@
|
|||
#include "llvm/Support/Signals.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
|
||||
#include <set>
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
static void exitWithError(const Twine &Message,
|
||||
|
@ -103,7 +102,7 @@ static void mergeInstrProfile(const cl::list<std::string> &Inputs,
|
|||
exitWithErrorCode(EC, OutputFilename);
|
||||
|
||||
InstrProfWriter Writer;
|
||||
std::set<std::error_code> WriterErrorCodes;
|
||||
SmallSet<std::error_code, 4> WriterErrorCodes;
|
||||
for (const auto &Filename : Inputs) {
|
||||
auto ReaderOrErr = InstrProfReader::create(Filename);
|
||||
if (std::error_code ec = ReaderOrErr.getError())
|
||||
|
|
Loading…
Reference in New Issue