aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/ProfileData/InstrProfTest.cpp
diff options
context:
space:
mode:
authorSnehasish Kumar <snehasishk@google.com>2025-05-19 16:12:57 -0700
committerGitHub <noreply@github.com>2025-05-19 16:12:57 -0700
commit7268c4e7b3b905835597129f40ba697c0f1319dd (patch)
treeff3134058a53d14680a59f25be4e938a24ff5a43 /llvm/unittests/ProfileData/InstrProfTest.cpp
parentb586ddfd285c76ea6ea9656a11cfb03fcde58787 (diff)
downloadllvm-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.cpp6
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);