Remove undefined behaviors

This commit is contained in:
Justine Tunney 2021-05-16 11:16:28 -07:00
parent 4864565198
commit b3838173ec
51 changed files with 756 additions and 1302 deletions

View file

@ -26,8 +26,8 @@
* @mayalias
*/
void(pslld)(uint32_t a[4], const uint32_t b[4], unsigned char c) {
unsigned i;
if (c <= 31) {
unsigned i;
for (i = 0; i < 4; ++i) {
a[i] = b[i] << c;
}