mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-04 09:37:20 +00:00
Fix signed/unsigned comparison warnings
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@297561 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
391cb79344
commit
6665df9d6e
@ -1941,7 +1941,7 @@ TEST(LazyCallGraphTest, ReplaceNodeFunction) {
|
||||
LazyCallGraph::RefSCC &RC2 = *I++;
|
||||
EXPECT_EQ(CG.postorder_ref_scc_end(), I);
|
||||
|
||||
ASSERT_EQ(2u, RC1.size());
|
||||
ASSERT_EQ(2, RC1.size());
|
||||
LazyCallGraph::SCC &C1 = RC1[0];
|
||||
LazyCallGraph::SCC &C2 = RC1[1];
|
||||
|
||||
@ -2036,7 +2036,7 @@ TEST(LazyCallGraphTest, RemoveFunctionWithSpurriousRef) {
|
||||
LazyCallGraph::RefSCC &RC2 = *I++;
|
||||
EXPECT_EQ(CG.postorder_ref_scc_end(), I);
|
||||
|
||||
ASSERT_EQ(2u, RC1.size());
|
||||
ASSERT_EQ(2, RC1.size());
|
||||
LazyCallGraph::SCC &C1 = RC1[0];
|
||||
LazyCallGraph::SCC &C2 = RC1[1];
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user