opt_02_late_addrof_join.c (123B)
1 int test_main(void) { 2 int x = 5; 3 if (x == 5) 4 x = 40; 5 else 6 x = 1; 7 int* p = &x; 8 *p = *p + 2; 9 return x; 10 }