mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-12 07:26:08 +00:00

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
6 lines
97 B
C++
6 lines
97 B
C++
#include <stdio.h>
|
|
int main ()
|
|
{
|
|
puts ("I am the second program."); // Set breakpoint 2 here
|
|
}
|