In r353906 we hooked up clang and lldb's reproducer infrastructure to capture files used by clang. This patch adds the necessary logic to have clang reuse the files from lldb's reproducer during replay. Differential revision: https://reviews.llvm.org/D58309 llvm-svn: 354283
10 lines
118 B
C++
10 lines
118 B
C++
#include "Foo.h"
|
|
|
|
void stop() {}
|
|
|
|
int main(int argc, char **argv) {
|
|
Foo foo;
|
|
stop(); // break here.
|
|
return 0;
|
|
}
|