aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Stellard <tstellar@redhat.com>2019-06-10 23:25:00 +0000
committerTom Stellard <tstellar@redhat.com>2019-06-10 23:25:00 +0000
commit90c370c33dca77ccabc4eeebe57c3c7f05a0ce61 (patch)
tree23b551403c53cddb276f58776449b77a205028c8
parentad5bcd4ee602b24478dc0acc586102cab3839004 (diff)
downloadllvm-90c370c33dca77ccabc4eeebe57c3c7f05a0ce61.zip
llvm-90c370c33dca77ccabc4eeebe57c3c7f05a0ce61.tar.gz
llvm-90c370c33dca77ccabc4eeebe57c3c7f05a0ce61.tar.bz2
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
-rw-r--r--llvm/lib/MC/MCWin64EH.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCWin64EH.cpp b/llvm/lib/MC/MCWin64EH.cpp
index 8bc1f08..3ef1514 100644
--- a/llvm/lib/MC/MCWin64EH.cpp
+++ b/llvm/lib/MC/MCWin64EH.cpp
@@ -522,7 +522,7 @@ static void ARM64EmitUnwindInfo(MCStreamer &streamer, WinEH::FrameInfo *info) {
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();