- fixed comment: bs cannot be NULL anymore (and was never NULL previously)
[libfirm] / ir / be / test / fehler132.c
1 unsigned long long f(void)
2 {
3         unsigned long long res;
4         asm(
5                 "mul %2\n\t"
6                 : "=A" (res)
7                 : "a" (0x10000), "r" (0x10000)
8         );
9         return res;
10 }
11
12 int main(void)
13 {
14         printf("0x%llX\n", f());
15         return 0;
16 }