brintos

brintos / llvm-project-archived public Read only

0
0
Text · 187 B · f3e01b7 Raw
10 lines · c
1#include <stdint.h>2 3int a_function() { return 123; }4 5int main() {6  const uintptr_t a_function_addr = (uintptr_t)a_function;7  // Set break point at this line.8  return a_function();9}10