Johnny Chen 0924b41201 Avoid using hardcoded line number to break on. Use the line_number() utility
function to get the line number to break on during setUp().

llvm-svn: 116356
2010-10-12 22:39:52 +00:00

8 lines
130 B
C

#include <stdio.h>
int
main (int argc, char **argv)
{
printf ("Hello there!\n"); // Set break point at this line.
return 0;
}