[llvm] [MemProf] Add missing <unordered_map> include to fix buildbot (PR #77788)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 11 07:48:52 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-transforms
Author: Teresa Johnson (teresajohnson)
<details>
<summary>Changes</summary>
Should fix buildbot failure https://lab.llvm.org/buildbot/#/builders/54/builds/8451
from #<!-- -->75823.
---
Full diff: https://github.com/llvm/llvm-project/pull/77788.diff
1 Files Affected:
- (modified) llvm/lib/Transforms/IPO/MemProfContextDisambiguation.cpp (+1)
``````````diff
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;
``````````
</details>
https://github.com/llvm/llvm-project/pull/77788
More information about the llvm-commits
mailing list