brintos

brintos / llvm-project-archived public Read only

0
0
Text · 193 B · 7a4f90d Raw
12 lines · cpp
1#include <stdio.h>2 3static void unique_function_name() {4  puts(__PRETTY_FUNCTION__); // foo breakpoint 25}6 7int foo(int x) {8  // foo breakpoint 19  unique_function_name();10  return x + 42;11}12