fehler96: tarval module calculates Shrs wrong for mode_Iu.
[libfirm] / ir / be / test / fehler96.c
1 int shrs1(unsigned x) {
2         return -(x >> 31);
3 }
4
5 int main(void)
6 {
7         printf("%d (should be -1)\n", shrs1(-3));
8 }