We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99774ec commit bfd0874Copy full SHA for bfd0874
bolt/lib/Profile/DataAggregator.cpp
@@ -295,8 +295,10 @@ void DataAggregator::processFileBuildID(StringRef FileBuildID) {
295
296
PerfProcessInfo BuildIDProcessInfo;
297
launchPerfProcess("buildid list", BuildIDProcessInfo, "buildid-list");
298
- if (prepareToParse("buildid", BuildIDProcessInfo, WarningCallback))
299
- return;
+ int ErrCode = prepareToParse("buildid", BuildIDProcessInfo, WarningCallback);
+ if (ErrCode != 0) {
300
+ exit(ErrCode);
301
+ }
302
303
std::optional<StringRef> FileName = getFileNameForBuildID(FileBuildID);
304
if (FileName && *FileName == sys::path::filename(BC->getFilename())) {
0 commit comments