add test for n*n=2n bits multiplication
[libfirm] / ir / be / test / mul2n.c
1 /* should produce only ONE mul, no conv's */
2 #include <stdio.h>
3
4 int a = 0x80000000;
5
6 int main(void)
7 {
8         long long x = (long long)a * a;
9         printf("%lld\n", x);
10         return 0;
11 }