diff options
author | Greg Clayton <gclayton@apple.com> | 2013-04-04 20:35:24 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2013-04-04 20:35:24 +0000 |
commit | b7ad58a0dfe2a3db177472dacadc474a608e9bc0 (patch) | |
tree | 70e9c446c7e28b8b945c37d2665b027f9e8e67ea /lldb/tools/lldb-perf/common/stepping/lldb-perf-stepping.cpp | |
parent | 563d9dc1b2ad4b7622575f7fbfdb99c84400d442 (diff) | |
download | bcm5719-llvm-b7ad58a0dfe2a3db177472dacadc474a608e9bc0.tar.gz bcm5719-llvm-b7ad58a0dfe2a3db177472dacadc474a608e9bc0.zip |
<rdar://problem/13457391>
LLDB now can use a single dash for all long options for all commands form the command line and from the command interpreter. This involved just switching all calls from getopt_long() to getopt_long_only().
llvm-svn: 178789
Diffstat (limited to 'lldb/tools/lldb-perf/common/stepping/lldb-perf-stepping.cpp')
-rw-r--r-- | lldb/tools/lldb-perf/common/stepping/lldb-perf-stepping.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/tools/lldb-perf/common/stepping/lldb-perf-stepping.cpp b/lldb/tools/lldb-perf/common/stepping/lldb-perf-stepping.cpp index cf7964be0d8..82cf5eed559 100644 --- a/lldb/tools/lldb-perf/common/stepping/lldb-perf-stepping.cpp +++ b/lldb/tools/lldb-perf/common/stepping/lldb-perf-stepping.cpp @@ -222,7 +222,7 @@ GetShortOptionString (struct option *long_options) int main(int argc, const char * argv[]) { - // Prepare for & make calls to getopt_long. + // Prepare for & make calls to getopt_long_only. std::string short_option_string (GetShortOptionString(g_long_options)); |