#include <inttypes.h>

int8_t int8_shlmod(int8_t x,int8_t y)
{
  return x << (y & 7);
}