#include <inttypes.h>

int32_t int32_shlmod(int32_t x,int32_t y)
{
  return x << (y & 31);
}