1__attribute__((section("__codesection")))2int f(int a) {3 return a + 1; // Set break point at this line.4}5 6int main() {7 return f(10);8}9