Use symbolic names instead of magic values for the position parameter of get_irn_n().
[libfirm] / ir / be / test / most_complex_conv.c
1 unsigned int MAX_INT = 4294967295;
2
3 int main(void) {
4         double res = MAX_INT;
5         printf("Res: %f\n", res);
6         return 0;
7 }