Magellan Linux

Contents of /trunk/llvm/patches/llvm-8.0.0-fix-the-buildbot-issue-introduced-by-r351421.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3360 - (show annotations) (download)
Tue Jun 25 12:00:48 2019 UTC (4 years, 11 months ago) by niro
File size: 1159 byte(s)
-fix make check issues
1 From 0b88c7b4a4e23dc5f8973095eb99d274f69a2b25 Mon Sep 17 00:00:00 2001
2 From: Sanjin Sijaric <ssijaric@codeaurora.org>
3 Date: Fri, 18 Jan 2019 19:34:20 +0000
4 Subject: [PATCH] Fix the buildbot issue introduced by r351421
5
6 The EXPENSIVE_CHECK x86_64 Windows buildbot is failing due to this change. Fix
7 the map access.
8
9
10 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@351577 91177308-0d34-0410-b5e6-96231b3b80d8
11 ---
12 lib/MC/MCWin64EH.cpp | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/lib/MC/MCWin64EH.cpp b/lib/MC/MCWin64EH.cpp
16 index 8bc1f08c8875..3ef1514455af 100644
17 --- a/lib/MC/MCWin64EH.cpp
18 +++ b/lib/MC/MCWin64EH.cpp
19 @@ -522,7 +522,7 @@ static void ARM64EmitUnwindInfo(MCStreamer &streamer, WinEH::FrameInfo *info) {
20 if (MatchingEpilog) {
21 assert(EpilogInfo.find(MatchingEpilog) != EpilogInfo.end() &&
22 "Duplicate epilog not found");
23 - EpilogInfo[EpilogStart] = EpilogInfo[MatchingEpilog];
24 + EpilogInfo[EpilogStart] = EpilogInfo.lookup(MatchingEpilog);
25 // Clear the unwind codes in the EpilogMap, so that they don't get output
26 // in the logic below.
27 EpilogInstrs.clear();