summaryrefslogtreecommitdiffstats
path: root/lldb/source/Interpreter/CommandInterpreter.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2011-11-10 01:30:05 +0000
committerGreg Clayton <gclayton@apple.com>2011-11-10 01:30:05 +0000
commitdac5efa8c48362d521599e1e8c91f66090018eba (patch)
treebbbf804dfa9f9cee75d8b9f8009b0c3fd0cf7126 /lldb/source/Interpreter/CommandInterpreter.cpp
parent8ee6438235f9ad03f7792c97a2adc75692b1176a (diff)
downloadbcm5719-llvm-dac5efa8c48362d521599e1e8c91f66090018eba.tar.gz
bcm5719-llvm-dac5efa8c48362d521599e1e8c91f66090018eba.zip
Removed debug printf statements.
llvm-svn: 144257
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r--lldb/source/Interpreter/CommandInterpreter.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp
index 88696571c93..f37bc62af40 100644
--- a/lldb/source/Interpreter/CommandInterpreter.cpp
+++ b/lldb/source/Interpreter/CommandInterpreter.cpp
@@ -901,7 +901,6 @@ StripLeadingSpaces (std::string &s)
static size_t
FindArgumentTerminator (const std::string &s)
{
- printf ("FindArgumentTerminator( s = '%s') => ", s.c_str());
const size_t s_len = s.size();
size_t offset = 0;
while (offset < s_len)
@@ -917,14 +916,12 @@ FindArgumentTerminator (const std::string &s)
// or if we have "\s--\s".
if ((pos + 2 >= s_len) || isspace(s[pos+2]))
{
- printf ("%zu\n", pos);
return pos;
}
}
}
offset = pos + 2;
}
- printf ("-1\n");
return std::string::npos;
}
OpenPOWER on IntegriCloud