You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
12 lines
136 B
C++
12 lines
136 B
C++
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
int a_function_to_call()
|
||
|
|
{
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
printf("%d\n", a_function_to_call()); // breakpoint
|
||
|
|
}
|