Skip to content

Commit 81d93af

Browse files
[memprof] Fix arm-polly-linux builds
arm-polly-linux seems to be failing because we don't include <unordered_map>. https://lab.llvm.org/buildbot/#/builders/90/builds/3090
1 parent c0ee8e2 commit 81d93af

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

llvm/include/llvm/Transforms/Instrumentation/MemProfiler.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
#include "llvm/IR/PassManager.h"
1717
#include "llvm/ProfileData/MemProf.h"
1818

19+
#include <unordered_map>
20+
1921
namespace llvm {
2022
class Function;
2123
class IndexedInstrProfReader;

0 commit comments

Comments
 (0)