[Lldb-commits] [lldb] r166542 - /lldb/trunk/tools/driver/Driver.cpp

Jason Molenda jmolenda at apple.com
Tue Oct 23 20:29:40 PDT 2012


Author: jmolenda
Date: Tue Oct 23 22:29:40 2012
New Revision: 166542

URL: http://llvm.org/viewvc/llvm-project?rev=166542&view=rev
Log:
eArgTypePath was removed in r166533; change -c to
expect eArgTypeFilename.

Modified:
    lldb/trunk/tools/driver/Driver.cpp

Modified: lldb/trunk/tools/driver/Driver.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/driver/Driver.cpp?rev=166542&r1=166541&r2=166542&view=diff
==============================================================================
--- lldb/trunk/tools/driver/Driver.cpp (original)
+++ lldb/trunk/tools/driver/Driver.cpp Tue Oct 23 22:29:40 2012
@@ -84,7 +84,7 @@
         "be one of the architectures for which the program was compiled." },
     { LLDB_OPT_SET_3,    true , "file"           , 'f', required_argument, 0,  eArgTypeFilename,
         "Tells the debugger to use the file <filename> as the program to be debugged." },
-    { LLDB_OPT_SET_3,    false, "core"           , 'c', required_argument, 0,  eArgTypePath,
+    { LLDB_OPT_SET_3,    false, "core"           , 'c', required_argument, 0,  eArgTypeFilename,
         "Tells the debugger to use the fullpath to <path> as the core file." },
     { LLDB_OPT_SET_4,    true , "attach-name"    , 'n', required_argument, 0,  eArgTypeProcessName,
         "Tells the debugger to attach to a process with the given name." },





More information about the lldb-commits mailing list