示例#1
0
 public static uint bits_resetlowest(uint x)
 {
     if (Bmi1.IsBmi1Supported)
     {
         return(Bmi1.blsr_u32(x));
     }
     else
     {
         return(x & (x - 1));
     }
 }