diff options
author | Snehasish Kumar <snehasishk@google.com> | 2025-05-19 16:16:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-19 16:16:09 -0700 |
commit | a53b306c479cb905c0ac3bb6567e4a20b379643e (patch) | |
tree | b8681424663c514a99b14d3552505495ef43d28f /llvm/unittests/ProfileData/MemProfTest.cpp | |
parent | 7268c4e7b3b905835597129f40ba697c0f1319dd (diff) | |
download | llvm-a53b306c479cb905c0ac3bb6567e4a20b379643e.zip llvm-a53b306c479cb905c0ac3bb6567e4a20b379643e.tar.gz llvm-a53b306c479cb905c0ac3bb6567e4a20b379643e.tar.bz2 |
[NFC][MemProf] Move Radix tree methods to their own header and cpp. (#140501)
Part of a larger refactoring with the following goals
1. Reduce the size of MemProf.h
2. Avoid including ModuleSummaryIndex just for a couple of types
Diffstat (limited to 'llvm/unittests/ProfileData/MemProfTest.cpp')
-rw-r--r-- | llvm/unittests/ProfileData/MemProfTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/unittests/ProfileData/MemProfTest.cpp b/llvm/unittests/ProfileData/MemProfTest.cpp index b193799..26b0969 100644 --- a/llvm/unittests/ProfileData/MemProfTest.cpp +++ b/llvm/unittests/ProfileData/MemProfTest.cpp @@ -15,6 +15,7 @@ #include "llvm/IR/Value.h" #include "llvm/Object/ObjectFile.h" #include "llvm/ProfileData/MemProfData.inc" +#include "llvm/ProfileData/MemProfRadixTree.h" #include "llvm/ProfileData/MemProfReader.h" #include "llvm/ProfileData/MemProfYAML.h" #include "llvm/Support/raw_ostream.h" |