From ecf3ae4a7032d2a5ee42433d4e5d002ac349adbf Mon Sep 17 00:00:00 2001 From: Davide Italiano Date: Wed, 5 Jun 2019 20:23:03 +0000 Subject: [PATCH] [NativeProcessDarwin] Remove dead code. NFCI. llvm-svn: 362639 --- lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp b/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp index 1d7851d..fe7de27 100644 --- a/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp +++ b/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp @@ -171,14 +171,6 @@ Status NativeProcessDarwin::FinalizeLaunch(LaunchFlavor launch_flavor, Status error; Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS)); -#if 0 - m_path = path; - size_t i; - char const *arg; - for (i=0; (arg = argv[i]) != NULL; i++) - m_args.push_back(arg); -#endif - error = StartExceptionThread(); if (!error.Success()) { if (log) -- 2.7.4