Removes some bugs found by oss-fuzz (#1266)
Leak on breakpoints Undefined shift in ARM
This commit is contained in:
@@ -666,7 +666,7 @@ NEON_VOP(shl_s32, neon_s32, 1)
|
||||
uint64_t HELPER(neon_shl_s64)(uint64_t valop, uint64_t shiftop)
|
||||
{
|
||||
int8_t shift = (int8_t)shiftop;
|
||||
int64_t val = valop;
|
||||
uint64_t val = valop;
|
||||
if (shift >= 64) {
|
||||
val = 0;
|
||||
} else if (shift <= -64) {
|
||||
|
||||
Reference in New Issue
Block a user