diff options
author | Kazu Hirata <kazu@google.com> | 2024-12-11 09:17:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-11 09:17:16 -0800 |
commit | 66edefaee5e87baabe2367cf1dd82ef40cee8c86 (patch) | |
tree | c76c1949b4332311cca83da68502c83b9123c4e0 /llvm/unittests/ProfileData/MemProfTest.cpp | |
parent | 9aa5848d5cb03cd024b1ebb2f8a5225917f63881 (diff) | |
download | llvm-66edefaee5e87baabe2367cf1dd82ef40cee8c86.zip llvm-66edefaee5e87baabe2367cf1dd82ef40cee8c86.tar.gz llvm-66edefaee5e87baabe2367cf1dd82ef40cee8c86.tar.bz2 |
[memprof] Move YAML support to MemProfYAML.h (NFC) (#119515)
The YAML support is increasing in size, so this patch moves it to a
separate file.
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 5dc4b0d..456b093 100644 --- a/llvm/unittests/ProfileData/MemProfTest.cpp +++ b/llvm/unittests/ProfileData/MemProfTest.cpp @@ -16,6 +16,7 @@ #include "llvm/Object/ObjectFile.h" #include "llvm/ProfileData/MemProfData.inc" #include "llvm/ProfileData/MemProfReader.h" +#include "llvm/ProfileData/MemProfYAML.h" #include "llvm/Support/raw_ostream.h" #include "gmock/gmock.h" #include "gtest/gtest.h" |