1 int f_dso(int x, int y) { 2 return 2 * x + y; 3 } 4 5 int f_replaced(int x, int y) { 6 return x + y + 5; 7 } 8 9 int f_replacement(int x, int y) { 10 return x + y + 6; 11 } 12