You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
e029fa5781
breakpoint should return false from IsValid. llvm-svn: 212206
15 lines
118 B
C
15 lines
118 B
C
#include <stdio.h>
|
|
|
|
void
|
|
AFunction()
|
|
{
|
|
printf ("I am a function.\n");
|
|
}
|
|
|
|
int
|
|
main ()
|
|
{
|
|
AFunction();
|
|
return 0;
|
|
}
|