mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:59:56 +00:00
Fix a compile warning.
llvm-svn: 71993
This commit is contained in:
parent
84123bf6e8
commit
711313f3ac
@ -296,7 +296,7 @@ TEST_F(ValueHandle, CallbackVH_DeletionCanRAUW) {
|
|||||||
}
|
}
|
||||||
virtual void allUsesReplacedWith(Value *new_value) {
|
virtual void allUsesReplacedWith(Value *new_value) {
|
||||||
ASSERT_TRUE(NULL != getValPtr());
|
ASSERT_TRUE(NULL != getValPtr());
|
||||||
EXPECT_EQ(1, getValPtr()->getNumUses());
|
EXPECT_EQ(1U, getValPtr()->getNumUses());
|
||||||
EXPECT_EQ(NULL, AURWArgument);
|
EXPECT_EQ(NULL, AURWArgument);
|
||||||
AURWArgument = new_value;
|
AURWArgument = new_value;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user