diff --git a/lldb/tools/driver/Driver.cpp b/lldb/tools/driver/Driver.cpp index 45effa4e5180..59bfca6f2ffb 100644 --- a/lldb/tools/driver/Driver.cpp +++ b/lldb/tools/driver/Driver.cpp @@ -13,7 +13,6 @@ #include "lldb/API/SBDebugger.h" #include "lldb/API/SBHostOS.h" #include "lldb/API/SBLanguageRuntime.h" -#include "lldb/API/SBReproducer.h" #include "lldb/API/SBStream.h" #include "lldb/API/SBStringList.h" @@ -913,14 +912,6 @@ main(int argc, char const *argv[]) return 1; } - if (replay) { - SBReproducer reproducer; - if (!reproducer.Replay()) { - WithColor::error() << "something went wrong running the reporducer.\n"; - } - return 0; - } - SBHostOS::ThreadCreated(""); signal(SIGINT, sigint_handler);