Skip to content

Commit 90c370c

Browse files
committed
Merging r351577:
------------------------------------------------------------------------ r351577 | ssijaric | 2019-01-18 11:34:20 -0800 (Fri, 18 Jan 2019) | 5 lines Fix the buildbot issue introduced by r351421 The EXPENSIVE_CHECK x86_64 Windows buildbot is failing due to this change. Fix the map access. ------------------------------------------------------------------------ llvm-svn: 363006
1 parent ad5bcd4 commit 90c370c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/MC/MCWin64EH.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ static void ARM64EmitUnwindInfo(MCStreamer &streamer, WinEH::FrameInfo *info) {
522522
if (MatchingEpilog) {
523523
assert(EpilogInfo.find(MatchingEpilog) != EpilogInfo.end() &&
524524
"Duplicate epilog not found");
525-
EpilogInfo[EpilogStart] = EpilogInfo[MatchingEpilog];
525+
EpilogInfo[EpilogStart] = EpilogInfo.lookup(MatchingEpilog);
526526
// Clear the unwind codes in the EpilogMap, so that they don't get output
527527
// in the logic below.
528528
EpilogInstrs.clear();

0 commit comments

Comments
 (0)