different cparser / eccp code
[libfirm] / ir / be / test / fehler149.c
1 unsigned short tdenm, tquot;
2
3 void test(unsigned short num[]) {
4
5         unsigned int tnum = (((unsigned int) num[0]) << 16) + num[1];
6
7         /* Do not execute the divide instruction if it will overflow. */
8         if ((tdenm * 0xffffL) < tnum)
9                 tquot = 0xffff;
10 }
11
12 int main(int argc, char *argv[]) {
13         return 0;
14 }