Skip to content

Commit babe426

Browse files
Fix LookupPromotedStructDeathVars out param initialization (#38770)
1 parent 239b0c4 commit babe426

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coreclr/src/jit/compiler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7643,7 +7643,7 @@ class Compiler
76437643

76447644
bool LookupPromotedStructDeathVars(GenTree* tree, VARSET_TP** bits)
76457645
{
7646-
bits = nullptr;
7646+
*bits = nullptr;
76477647
bool result = false;
76487648

76497649
if (m_promotedStructDeathVars != nullptr)

0 commit comments

Comments
 (0)