Skip to content

Commit

Permalink
Remove undefined reference of null (#74378)
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronRobinsonMSFT committed Aug 23, 2022
1 parent 916876d commit a5acb88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/jit/valuenum.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9821,7 +9821,7 @@ void Compiler::fgValueNumberHelperCallFunc(GenTreeCall* call, VNFunc vnf, ValueN
useEntryPointAddrAsArg0 = false;
}

CallArg* curArg = &*args->Args().begin();
CallArg* curArg = args->Args().begin().GetArg();
if (nArgs == 0)
{
if (generateUniqueVN)
Expand Down

0 comments on commit a5acb88

Please sign in to comment.