Jason Molenda 52560ba105 Change TestExec.py from creating an i386+x86_64 fat binary
on darwin systems and re-execing itself, to creating two
separate test programs; lldb runs the first program and it
exec's the second.  

Support for compiling for i386 is going away.

llvm-svn: 334783
2018-06-15 00:55:53 +00:00

6 lines
97 B
C++

#include <stdio.h>
int main ()
{
puts ("I am the second program."); // Set breakpoint 2 here
}