mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-21 03:05:26 -04:00
[C++11] More 'nullptr' conversion. In some cases just using a boolean check instead of comparing to nullptr.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206252 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
+2
-2
@@ -260,7 +260,7 @@ void DebugRecVH::deleted() {
|
||||
|
||||
MDNode *OldScope = Entry.first.get();
|
||||
MDNode *OldInlinedAt = Entry.second.get();
|
||||
assert(OldScope != 0 && OldInlinedAt != 0 &&
|
||||
assert(OldScope && OldInlinedAt &&
|
||||
"Entry should be non-canonical if either val dropped to null");
|
||||
|
||||
// Otherwise, we do have an entry in it, nuke it and we're done.
|
||||
@@ -314,7 +314,7 @@ void DebugRecVH::allUsesReplacedWith(Value *NewVa) {
|
||||
|
||||
MDNode *OldScope = Entry.first.get();
|
||||
MDNode *OldInlinedAt = Entry.second.get();
|
||||
assert(OldScope != 0 && OldInlinedAt != 0 &&
|
||||
assert(OldScope && OldInlinedAt &&
|
||||
"Entry should be non-canonical if either val dropped to null");
|
||||
|
||||
// Otherwise, we do have an entry in it, nuke it and we're done.
|
||||
|
||||
Reference in New Issue
Block a user