[Lldb-commits] [lldb] r143359 - /lldb/trunk/source/Interpreter/CommandInterpreter.cpp

Johnny Chen johnny.chen at apple.com
Mon Oct 31 13:12:15 PDT 2011


Author: johnny
Date: Mon Oct 31 15:12:14 2011
New Revision: 143359

URL: http://llvm.org/viewvc/llvm-project?rev=143359&view=rev
Log:
Fix the r143266 check-in which broke TestCommandRegex.py.

Modified:
    lldb/trunk/source/Interpreter/CommandInterpreter.cpp

Modified: lldb/trunk/source/Interpreter/CommandInterpreter.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/CommandInterpreter.cpp?rev=143359&r1=143358&r2=143359&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/CommandInterpreter.cpp (original)
+++ lldb/trunk/source/Interpreter/CommandInterpreter.cpp Mon Oct 31 15:12:14 2011
@@ -1376,13 +1376,6 @@
                         }
                     }
                     break;
-
-                default:
-                    result.AppendErrorWithFormat ("unknown command shorthand suffix: '%s'\n", 
-                                                  suffix.c_str());
-                    result.SetStatus (eReturnStatusFailed);
-                    return false;
-        
                 }
             }
         }





More information about the lldb-commits mailing list