gitglorythegreat
Results
3
issues of
gitglorythegreat
1. `b == 31`时,b 为最高字节位,不需要扩展。 2. `b`取 `0`时,`8 * b - 1`为`-1`,明显可以看出原来的代码有错。操作数都是 256 bit,字节位是从 0 到 31,所以应该是`8 * (b + 1) - 1`。 3. 置1后,需要取余将结果变回 256 bit 非负数。
### What type of PR is this (这是什么类型的PR) - [x] Typo(勘误) - [ ] BUG(程序错误) - [ ] Improvement(提升) - [ ] Feature(新特性) ### Which issue(s) this PR fixes(Optional) (这个PR...