Skip to content

Commit

Permalink
Fix LookupPromotedStructDeathVars out param initialization (dotnet#38770
Browse files Browse the repository at this point in the history
)
  • Loading branch information
BruceForstall authored Jul 8, 2020
1 parent 239b0c4 commit babe426
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/src/jit/compiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -7643,7 +7643,7 @@ class Compiler

bool LookupPromotedStructDeathVars(GenTree* tree, VARSET_TP** bits)
{
bits = nullptr;
*bits = nullptr;
bool result = false;

if (m_promotedStructDeathVars != nullptr)
Expand Down

0 comments on commit babe426

Please sign in to comment.