[llvm] c37699b - [MemProf] Add missing <unordered_map> include to fix buildbot (#77788)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 11 07:49:00 PST 2024
Author: Teresa Johnson
Date: 2024-01-11T07:48:55-08:00
New Revision: c37699b9e358552550b18d1e627af62a7159f5f3
URL: https://github.com/llvm/llvm-project/commit/c37699b9e358552550b18d1e627af62a7159f5f3
DIFF: https://github.com/llvm/llvm-project/commit/c37699b9e358552550b18d1e627af62a7159f5f3.diff
LOG: [MemProf] Add missing <unordered_map> include to fix buildbot (#77788)
Should fix buildbot failure
https://lab.llvm.org/buildbot/#/builders/54/builds/8451
from #75823.
Added:
Modified:
llvm/lib/Transforms/IPO/MemProfContextDisambiguation.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/IPO/MemProfContextDisambiguation.cpp b/llvm/lib/Transforms/IPO/MemProfContextDisambiguation.cpp
index 0a6f69bc73d520..3e7ceb994d4499 100644
--- a/llvm/lib/Transforms/IPO/MemProfContextDisambiguation.cpp
+++ b/llvm/lib/Transforms/IPO/MemProfContextDisambiguation.cpp
@@ -45,6 +45,7 @@
#include "llvm/Transforms/IPO.h"
#include "llvm/Transforms/Utils/Cloning.h"
#include <sstream>
+#include <unordered_map>
#include <vector>
using namespace llvm;
using namespace llvm::memprof;
More information about the llvm-commits
mailing list