Diff
checker
Text
Text
Images
Documents
Excel
Folders
Legal
Features
Desktop
Pricing
Sign in
Download Diffchecker Desktop
Compare text
Find the difference between two text files
Real-time editor
Hide unchanged lines
Disable line wrap
Layout
Split
Unified
Diff precision
Word
Character
Syntax highlighting
Choose syntax
Ignore
Transform text
Go to first change
Edit input
Diffchecker Desktop
The most secure way to run Diffchecker. Get the Diffchecker Desktop app: your diffs never leave your computer!
Get Desktop
Untitled Diff
Created
5 years ago
Diff never expires
Clear
Export
Share
Explain
4 removals
Lines
Total
Removed
Words
Total
Removed
To continue using this feature, upgrade to
Diff
checker
Pro
View Pricing
15 lines
Copy
11 additions
Lines
Total
Added
Words
Total
Added
To continue using this feature, upgrade to
Diff
checker
Pro
View Pricing
22 lines
Copy
if ((tree->gtFlags & GTF_IND_NONNULL) != 0)
if ((tree->gtFlags & GTF_IND_NONNULL) != 0)
{
{
assert(tree->gtFlags & GTF_IND_NONFAULTING);
assert(tree->gtFlags & GTF_IND_NONFAULTING);
Copy
Copied
Copy
Copied
tree->gtVNPair = vnStore->VNPairForFunc(tree->TypeGet(), VNF_NonNullIndirect, addrNvnp);
if
(addr->IsCnsIntOrI())
if
(addr->gtCommaAssignVal()->IsCnsIntOrI())
{
{
Copy
Copied
Copy
Copied
assert(addrXvnp.BothEqual()
&&
ValueNumPair effectiveAddrNvnp = addrNvnp;
(addrXvnp.GetLiberal()
== ValueNumStore::VNForEmptyExcSet()));
ValueNumPair effectiveAddrXvnp = addrXvnp;
if (addr->OperIs(GT_COMMA))
{
vnStore->VNPUnpackExc(addr->gtEffectiveVal()->gtVNPair, &effectiveAddrNvnp, &effectiveAddrXvnp);
}
assert(effectiveAddrXvnp.BothEqual()
&&
(effectiveAddrXvnp.GetLiberal()
== ValueNumStore::VNForEmptyExcSet()));
tree->gtVNPair = vnStore->VNPairForFunc(tree->TypeGet(), VNF_NonNullIndirect, effectiveAddrNvnp);
}
}
else
else
{
{
assert(false && "it's not expected to be hit at the moment, but can be allowed.");
assert(false && "it's not expected to be hit at the moment, but can be allowed.");
// tree->gtVNPair = vnStore->VNPWithExc(tree->gtVNPair, addrXvnp);
// tree->gtVNPair = vnStore->VNPWithExc(tree->gtVNPair, addrXvnp);
}
}
}
}
Saved diffs
Original text
Open file
if ((tree->gtFlags & GTF_IND_NONNULL) != 0) { assert(tree->gtFlags & GTF_IND_NONFAULTING); tree->gtVNPair = vnStore->VNPairForFunc(tree->TypeGet(), VNF_NonNullIndirect, addrNvnp); if (addr->IsCnsIntOrI()) { assert(addrXvnp.BothEqual() && (addrXvnp.GetLiberal() == ValueNumStore::VNForEmptyExcSet())); } else { assert(false && "it's not expected to be hit at the moment, but can be allowed."); // tree->gtVNPair = vnStore->VNPWithExc(tree->gtVNPair, addrXvnp); } }
Changed text
Open file
if ((tree->gtFlags & GTF_IND_NONNULL) != 0) { assert(tree->gtFlags & GTF_IND_NONFAULTING); if (addr->gtCommaAssignVal()->IsCnsIntOrI()) { ValueNumPair effectiveAddrNvnp = addrNvnp; ValueNumPair effectiveAddrXvnp = addrXvnp; if (addr->OperIs(GT_COMMA)) { vnStore->VNPUnpackExc(addr->gtEffectiveVal()->gtVNPair, &effectiveAddrNvnp, &effectiveAddrXvnp); } assert(effectiveAddrXvnp.BothEqual() && (effectiveAddrXvnp.GetLiberal() == ValueNumStore::VNForEmptyExcSet())); tree->gtVNPair = vnStore->VNPairForFunc(tree->TypeGet(), VNF_NonNullIndirect, effectiveAddrNvnp); } else { assert(false && "it's not expected to be hit at the moment, but can be allowed."); // tree->gtVNPair = vnStore->VNPWithExc(tree->gtVNPair, addrXvnp); } }
Find difference