Blame SOURCES/0001-Fix-the-buildbot-issue-introduced-by-r351421.patch

240573
From eaa421d1f9c3748c550e2a91fcb134a3d2a8ebff Mon Sep 17 00:00:00 2001
240573
From: Sanjin Sijaric <ssijaric@codeaurora.org>
240573
Date: Fri, 18 Jan 2019 19:34:20 +0000
240573
Subject: [PATCH] Fix the buildbot issue introduced by r351421
240573
240573
The EXPENSIVE_CHECK x86_64 Windows buildbot is failing due to this change. Fix
240573
the map access.
240573
240573
llvm-svn: 351577
240573
---
240573
 lib/MC/MCWin64EH.cpp | 2 +-
240573
 1 file changed, 1 insertion(+), 1 deletion(-)
240573
240573
diff --git a/lib/MC/MCWin64EH.cpp b/lib/MC/MCWin64EH.cpp
240573
index 8bc1f08..3ef1514 100644
240573
--- a/lib/MC/MCWin64EH.cpp
240573
+++ b/lib/MC/MCWin64EH.cpp
240573
@@ -522,7 +522,7 @@ static void ARM64EmitUnwindInfo(MCStreamer &streamer, WinEH::FrameInfo *info) {
240573
     if (MatchingEpilog) {
240573
       assert(EpilogInfo.find(MatchingEpilog) != EpilogInfo.end() &&
240573
              "Duplicate epilog not found");
240573
-      EpilogInfo[EpilogStart] = EpilogInfo[MatchingEpilog];
240573
+      EpilogInfo[EpilogStart] = EpilogInfo.lookup(MatchingEpilog);
240573
       // Clear the unwind codes in the EpilogMap, so that they don't get output
240573
       // in the logic below.
240573
       EpilogInstrs.clear();
240573
-- 
240573
1.8.3.1
240573