You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
13 lines
215 B
C++
13 lines
215 B
C++
|
|
|
||
|
|
int func() { return 1; }
|
||
|
|
|
||
|
|
int
|
||
|
|
main(int argc, char const *argv[])
|
||
|
|
{
|
||
|
|
int a = 0; // breakpoint_1
|
||
|
|
int b = func(); // breakpoint_2
|
||
|
|
a = b + func(); // breakpoint_3
|
||
|
|
return 0; // breakpoint_4
|
||
|
|
}
|
||
|
|
|