mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-03 22:02:12 +00:00
[ThinLTO] Address review comments from PGO indirect call promotion (NFC)
Address a couple of post-commit review comments from r275707. llvm-svn: 275867
This commit is contained in:
parent
918f05063c
commit
bb5c404e9a
@ -147,7 +147,8 @@ public:
|
||||
// The starting ValueId is just after the number of values in the
|
||||
// ValueEnumerator, so that they can be emitted in the VST.
|
||||
GlobalValueId = VE.getValues().size();
|
||||
if (Index)
|
||||
if (!Index)
|
||||
return;
|
||||
for (const auto &GUIDSummaryLists : *Index)
|
||||
// Examine all summaries for this GUID.
|
||||
for (auto &Summary : GUIDSummaryLists.second)
|
||||
@ -293,7 +294,10 @@ private:
|
||||
}
|
||||
unsigned getValueId(GlobalValue::GUID ValGUID) {
|
||||
const auto &VMI = GUIDToValueIdMap.find(ValGUID);
|
||||
assert(VMI != GUIDToValueIdMap.end());
|
||||
// Expect that any GUID value had a value Id assigned by an
|
||||
// earlier call to assignValueId.
|
||||
assert(VMI != GUIDToValueIdMap.end() &&
|
||||
"GUID does not have assigned value Id");
|
||||
return VMI->second;
|
||||
}
|
||||
// Helper to get the valueId for the type of value recorded in VI.
|
||||
|
Loading…
x
Reference in New Issue
Block a user