diff options
author | Snehasish Kumar <snehasishk@google.com> | 2025-05-19 16:12:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-19 16:12:57 -0700 |
commit | 7268c4e7b3b905835597129f40ba697c0f1319dd (patch) | |
tree | ff3134058a53d14680a59f25be4e938a24ff5a43 /llvm/unittests/ProfileData/InstrProfTest.cpp | |
parent | b586ddfd285c76ea6ea9656a11cfb03fcde58787 (diff) | |
download | llvm-7268c4e7b3b905835597129f40ba697c0f1319dd.zip llvm-7268c4e7b3b905835597129f40ba697c0f1319dd.tar.gz llvm-7268c4e7b3b905835597129f40ba697c0f1319dd.tar.bz2 |
[NFC][MemProf] Fix typo in type name (#140500)
Diffstat (limited to 'llvm/unittests/ProfileData/InstrProfTest.cpp')
-rw-r--r-- | llvm/unittests/ProfileData/InstrProfTest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/unittests/ProfileData/InstrProfTest.cpp b/llvm/unittests/ProfileData/InstrProfTest.cpp index 34b1187c..a0bd41b 100644 --- a/llvm/unittests/ProfileData/InstrProfTest.cpp +++ b/llvm/unittests/ProfileData/InstrProfTest.cpp @@ -457,7 +457,7 @@ TEST_F(InstrProfTest, test_memprof_v2_full_schema) { ASSERT_THAT_ERROR(RecordOr.takeError(), Succeeded()); const memprof::MemProfRecord &Record = RecordOr.get(); - memprof::IndexedCallstackIdConveter CSIdConv(MemProfData); + memprof::IndexedCallstackIdConverter CSIdConv(MemProfData); const ::llvm::memprof::MemProfRecord WantRecord = IndexedMR.toMemProfRecord(CSIdConv); @@ -491,7 +491,7 @@ TEST_F(InstrProfTest, test_memprof_v2_partial_schema) { ASSERT_THAT_ERROR(RecordOr.takeError(), Succeeded()); const memprof::MemProfRecord &Record = RecordOr.get(); - memprof::IndexedCallstackIdConveter CSIdConv(MemProfData); + memprof::IndexedCallstackIdConverter CSIdConv(MemProfData); const ::llvm::memprof::MemProfRecord WantRecord = IndexedMR.toMemProfRecord(CSIdConv); @@ -609,7 +609,7 @@ TEST_F(InstrProfTest, test_memprof_merge) { std::optional<memprof::FrameId> LastUnmappedFrameId; - memprof::IndexedCallstackIdConveter CSIdConv(MemProfData); + memprof::IndexedCallstackIdConverter CSIdConv(MemProfData); const ::llvm::memprof::MemProfRecord WantRecord = IndexedMR.toMemProfRecord(CSIdConv); |