The EXPENSIVE_CHECK x86_64 Windows buildbot is failing due to this change. Fix
the map access.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@351577
91177308-0d34-0410-b5e6-
96231b3b80d8
if (MatchingEpilog) {
assert(EpilogInfo.find(MatchingEpilog) != EpilogInfo.end() &&
"Duplicate epilog not found");
- EpilogInfo[EpilogStart] = EpilogInfo[MatchingEpilog];
+ EpilogInfo[EpilogStart] = EpilogInfo.lookup(MatchingEpilog);
// Clear the unwind codes in the EpilogMap, so that they don't get output
// in the logic below.
EpilogInstrs.clear();