Skip to content

Commit 47e9f41

Browse files
committed
update function names in unittests too
1 parent c9c9826 commit 47e9f41

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
@@ -1599,12 +1599,12 @@ TEST_F(DILocationTest, KeyInstructions) {
15991599
EXPECT_EQ(Context.pImpl->NextAtomGroup, 6u);
16001600

16011601
// Check the waterline gets incremented by 1.
1602-
EXPECT_EQ(Context.incNextAtomGroup(), 6u);
1602+
EXPECT_EQ(Context.incNextDILocationAtomGroup(), 6u);
16031603
EXPECT_EQ(Context.pImpl->NextAtomGroup, 7u);
16041604

1605-
Context.updateAtomGroupWaterline(8);
1605+
Context.updateDILocationAtomGroupWaterline(8);
16061606
EXPECT_EQ(Context.pImpl->NextAtomGroup, 8u);
1607-
Context.updateAtomGroupWaterline(7);
1607+
Context.updateDILocationAtomGroupWaterline(7);
16081608
EXPECT_EQ(Context.pImpl->NextAtomGroup, 8u);
16091609
}
16101610

0 commit comments

Comments
 (0)