errc::protocol_error is winsock-oriented and mingw doesn't include it. (MS does, though)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@285261
91177308-0d34-0410-b5e6-
96231b3b80d8
return make_error<StringError>(
Twine("Encountered unknown sled type ") + "'" + Twine(int32_t{Kind}) +
"'.",
- std::make_error_code(std::errc::protocol_error));
+ std::make_error_code(std::errc::executable_format_error));
}
auto AlwaysInstrument = Extractor.getU8(&OffsetPtr);
Entry.AlwaysInstrument = AlwaysInstrument != 0;
make_error<StringError>(
Twine("Cannot extract instrumentation map from '") +
ExtractInput + "'.",
- std::make_error_code(std::errc::protocol_error)),
+ std::make_error_code(std::errc::executable_format_error)),
std::move(E));
});
break;