summaryrefslogtreecommitdiffstats
path: root/lldb/source/Target/Target.cpp
diff options
context:
space:
mode:
authorTodd Fiala <todd.fiala@gmail.com>2014-10-10 01:11:39 +0000
committerTodd Fiala <todd.fiala@gmail.com>2014-10-10 01:11:39 +0000
commit2c77a427ab7a1c33962a6c190facae33aa499b81 (patch)
tree8c86966d551220970fc2d03851869385b5740905 /lldb/source/Target/Target.cpp
parentb8e7eaedcb7152046237cc80b76d181d59e22234 (diff)
downloadbcm5719-llvm-2c77a427ab7a1c33962a6c190facae33aa499b81.tar.gz
bcm5719-llvm-2c77a427ab7a1c33962a6c190facae33aa499b81.zip
Reverse out r219169 related to quote handling.
Addresses pr/21190 (http://llvm.org/bugs/show_bug.cgi?id=21190). r219169 implemented this change list: http://reviews.llvm.org/D5472 for more details. llvm-svn: 219461
Diffstat (limited to 'lldb/source/Target/Target.cpp')
-rw-r--r--lldb/source/Target/Target.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/lldb/source/Target/Target.cpp b/lldb/source/Target/Target.cpp
index 8496463771c..badbab3ff3e 100644
--- a/lldb/source/Target/Target.cpp
+++ b/lldb/source/Target/Target.cpp
@@ -2672,7 +2672,6 @@ g_properties[] =
{ "breakpoints-use-platform-avoid-list", OptionValue::eTypeBoolean , false, true , NULL, NULL, "Consult the platform module avoid list when setting non-module specific breakpoints." },
{ "arg0" , OptionValue::eTypeString , false, 0 , NULL, NULL, "The first argument passed to the program in the argument array which can be different from the executable itself." },
{ "run-args" , OptionValue::eTypeArgs , false, 0 , NULL, NULL, "A list containing all the arguments to be passed to the executable when it is run. Note that this does NOT include the argv[0] which is in target.arg0." },
- { "expr-parser-compiler-args" , OptionValue::eTypeArgs , false, 0 , NULL, NULL, "A list containing all the arguments to be passed to the expression parser compiler." },
{ "env-vars" , OptionValue::eTypeDictionary, false, OptionValue::eTypeString , NULL, NULL, "A list of all the environment variables to be passed to the executable's environment, and their values." },
{ "inherit-env" , OptionValue::eTypeBoolean , false, true , NULL, NULL, "Inherit the environment from the process that is running LLDB." },
{ "input-path" , OptionValue::eTypeFileSpec , false, 0 , NULL, NULL, "The file/path to be used by the executable program for reading its standard input." },
@@ -2721,7 +2720,6 @@ enum
ePropertyBreakpointUseAvoidList,
ePropertyArg0,
ePropertyRunArgs,
- ePropertyExprParserCompilerArgs,
ePropertyEnvVars,
ePropertyInheritEnv,
ePropertyInputPath,
@@ -2978,20 +2976,6 @@ TargetProperties::GetRunArguments (Args &args) const
}
void
-TargetProperties::SetExprParserCompilerArguments (const Args &args)
-{
- const uint32_t idx = ePropertyExprParserCompilerArgs;
- m_collection_sp->SetPropertyAtIndexFromArgs (NULL, idx, args);
-}
-
-bool
-TargetProperties::GetExprParserCompilerArguments (Args &args) const
-{
- const uint32_t idx = ePropertyExprParserCompilerArgs;
- return m_collection_sp->GetPropertyAtIndexAsArgs (NULL, idx, args);
-}
-
-void
TargetProperties::SetRunArguments (const Args &args)
{
const uint32_t idx = ePropertyRunArgs;
OpenPOWER on IntegriCloud