Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Merge pull request #86 from maksqwe/assertion_search_fix
Browse files Browse the repository at this point in the history
Fix non-null assertion search in assertion table
  • Loading branch information
Senthil committed Feb 6, 2015
2 parents c4eb037 + 799f14b commit 8b79ddb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jit/assertionprop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3662,7 +3662,7 @@ EXPSET_TP Compiler::optImpliedByTypeOfAssertions(EXPSET_TP activeAssertions)
// impAssertion must be a Non Null assertion on lclNum
if (impAssertion->assertionKind != OAK_NOT_EQUAL ||
impAssertion->op1.kind != O1K_LCLVAR ||
impAssertion->op1.kind != O2K_CONST_INT ||
impAssertion->op2.kind != O2K_CONST_INT ||
impAssertion->op1.vn != chkAssertion->op1.vn)
{
continue;
Expand Down

0 comments on commit 8b79ddb

Please sign in to comment.