aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectPlatform.cpp
diff options
context:
space:
mode:
authorChaoren Lin <chaorenl@google.com>2015-05-12 21:06:48 +0000
committerChaoren Lin <chaorenl@google.com>2015-05-12 21:06:48 +0000
commit042ca39c019bf2231a093c1757a0892b1f45165a (patch)
tree7b31cf038db4d4525a24c2961d0776943e0d095f /lldb/source/Commands/CommandObjectPlatform.cpp
parent6fb3b4ba892b63cb18d18e3da891ff45b7b6dc1a (diff)
downloadllvm-042ca39c019bf2231a093c1757a0892b1f45165a.zip
llvm-042ca39c019bf2231a093c1757a0892b1f45165a.tar.gz
llvm-042ca39c019bf2231a093c1757a0892b1f45165a.tar.bz2
Platform settings doesn't need permission options.
Summary: Also removes conflict error message for '-w' between --user-write and --working-dir. Reviewers: flackr, clayborg Reviewed By: clayborg Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D9711 llvm-svn: 237178
Diffstat (limited to 'lldb/source/Commands/CommandObjectPlatform.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectPlatform.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectPlatform.cpp b/lldb/source/Commands/CommandObjectPlatform.cpp
index 293adcf..b231c4a 100644
--- a/lldb/source/Commands/CommandObjectPlatform.cpp
+++ b/lldb/source/Commands/CommandObjectPlatform.cpp
@@ -572,10 +572,7 @@ protected:
GetOptions ()
{
if (m_options.DidFinalize() == false)
- {
- m_options.Append(new OptionPermissions());
m_options.Finalize();
- }
return &m_options;
}
protected: