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