diff options
author | Davide Italiano <davide@freebsd.org> | 2019-06-05 20:23:03 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2019-06-05 20:23:03 +0000 |
commit | ecf3ae4a7032d2a5ee42433d4e5d002ac349adbf (patch) | |
tree | a80852f021a9873cf8bd8b0be76401d48193895f | |
parent | 53572d0470c92d3c10ab46b681d579680ad546c2 (diff) | |
download | bcm5719-llvm-ecf3ae4a7032d2a5ee42433d4e5d002ac349adbf.tar.gz bcm5719-llvm-ecf3ae4a7032d2a5ee42433d4e5d002ac349adbf.zip |
[NativeProcessDarwin] Remove dead code. NFCI.
llvm-svn: 362639
-rw-r--r-- | lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp b/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp index 1d7851d2dbe..fe7de27e0ee 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) |