Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update valuenum.cpp
  • Loading branch information
EgorBo authored Nov 29, 2022
commit 7a1e0f0c366719faae12fbc30027de8b46b8fd19
4 changes: 2 additions & 2 deletions src/coreclr/jit/valuenum.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6017,7 +6017,7 @@ ValueNum ValueNumStore::EvalHWIntrinsicFunUnary(
{
UINT32 cns = (UINT32)GetConstantInt32(arg0VN);
int lzc = 0;
while(cns != 0)
while (cns != 0)
{
cns = cns >> 1;
lzc++;
Expand All @@ -6033,7 +6033,7 @@ ValueNum ValueNumStore::EvalHWIntrinsicFunUnary(
{
UINT64 cns = (UINT64)GetConstantInt64(arg0VN);
int lzc = 0;
while(cns != 0)
while (cns != 0)
{
cns = cns >> 1;
lzc++;
Expand Down