Skip to content

Commit

Permalink
remove genLeadingZeroCount for CR.
Browse files Browse the repository at this point in the history
  • Loading branch information
shushanhf committed Jun 25, 2024
1 parent e98ed15 commit 996e79d
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/coreclr/jit/compiler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,17 +182,6 @@ inline unsigned genCountBits(uint32_t bits)
return BitOperations::PopCount(bits);
}

// genLeadingZeroCount: Count the number of leading zero bits in a mask.
inline unsigned genLeadingZeroCount(uint32_t bits)
{
return BitOperations::LeadingZeroCount(bits);
}

inline unsigned genLeadingZeroCount(uint64_t bits)
{
return BitOperations::LeadingZeroCount(bits);
}

/*****************************************************************************
*
* Given 3 masks value, end, start, returns the bits of value between start
Expand Down

0 comments on commit 996e79d

Please sign in to comment.