mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
Fix signed/unsigned comparison warnings
llvm-svn: 297561
This commit is contained in:
parent
070cebbdde
commit
b8aa529569
@ -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…
Reference in New Issue
Block a user