Skip to content

Commit 93fa11d

Browse files
committed
update function names in unittests too
1 parent 25b323f commit 93fa11d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/unittests/IR/MetadataTest.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1622,12 +1622,12 @@ TEST_F(DILocationTest, KeyInstructions) {
16221622
EXPECT_EQ(Context.pImpl->NextAtomGroup, 6u);
16231623

16241624
// Check the waterline gets incremented by 1.
1625-
EXPECT_EQ(Context.incNextAtomGroup(), 6u);
1625+
EXPECT_EQ(Context.incNextDILocationAtomGroup(), 6u);
16261626
EXPECT_EQ(Context.pImpl->NextAtomGroup, 7u);
16271627

1628-
Context.updateAtomGroupWaterline(8);
1628+
Context.updateDILocationAtomGroupWaterline(8);
16291629
EXPECT_EQ(Context.pImpl->NextAtomGroup, 8u);
1630-
Context.updateAtomGroupWaterline(7);
1630+
Context.updateDILocationAtomGroupWaterline(7);
16311631
EXPECT_EQ(Context.pImpl->NextAtomGroup, 8u);
16321632
}
16331633

0 commit comments

Comments
 (0)