aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/arm/thumb-function-addr/main.c
blob: f3e01b78f575b9dc351497e62a0eef2424dad4df (plain)
1
2
3
4
5
6
7
8
9
#include <stdint.h>

int a_function() { return 123; }

int main() {
  const uintptr_t a_function_addr = (uintptr_t)a_function;
  // Set break point at this line.
  return a_function();
}