xref: /llvm-project/lldb/test/API/arm/breakpoint-thumb-codesection/main.c (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 __attribute__((section("__codesection")))
f(int a)2 int f(int a) {
3   return a + 1; // Set break point at this line.
4 }
5 
main()6 int main() {
7   return f(10);
8 }
9