diff options
author | Snehasish Kumar <snehasishk@google.com> | 2025-05-19 16:21:51 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-19 16:21:51 -0700 |
commit | 0528848def299b9af334268a8f658df5105f6b64 (patch) | |
tree | 8be184302e74240804eb46a6c3febc0d239fba29 /llvm/unittests/ProfileData/MemProfTest.cpp | |
parent | ad3c1d2091d7f793101d7acbb06f3449ab01a310 (diff) | |
download | llvm-0528848def299b9af334268a8f658df5105f6b64.zip llvm-0528848def299b9af334268a8f658df5105f6b64.tar.gz llvm-0528848def299b9af334268a8f658df5105f6b64.tar.bz2 |
[NFC][MemProf] Move IndexedMemProfData to its own header. (#140503)
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ProfileData/MemProfTest.cpp b/llvm/unittests/ProfileData/MemProfTest.cpp index 201ee2d..7a2c4af 100644 --- a/llvm/unittests/ProfileData/MemProfTest.cpp +++ b/llvm/unittests/ProfileData/MemProfTest.cpp @@ -14,10 +14,10 @@ #include "llvm/DebugInfo/Symbolize/SymbolizableModule.h" #include "llvm/IR/Value.h" #include "llvm/Object/ObjectFile.h" +#include "llvm/ProfileData/IndexedMemProfData.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" #include "gmock/gmock.h" #include "gtest/gtest.h" |