[Lldb-commits] [lldb] c311618 - Revert "[lldb/Interpreter] Fix another eExpressionThreadVanished warning"

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Sat May 23 13:38:26 PDT 2020


Author: Jonas Devlieghere
Date: 2020-05-23T13:37:46-07:00
New Revision: c3116182c80b8d23b2136b69d46ecc4cd597b38c

URL: https://github.com/llvm/llvm-project/commit/c3116182c80b8d23b2136b69d46ecc4cd597b38c
DIFF: https://github.com/llvm/llvm-project/commit/c3116182c80b8d23b2136b69d46ecc4cd597b38c.diff

LOG: Revert "[lldb/Interpreter] Fix another eExpressionThreadVanished warning"

This reverts commit f2ffa33c79d3d0636d6c8eb7b5b7bcf8db7b397b. My local
checkout was behind and Eric already took care of it in the meantime.

Added: 
    

Modified: 
    lldb/source/Interpreter/CommandInterpreter.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp
index 5b1159a62748..1cd71b07eaeb 100644
--- a/lldb/source/Interpreter/CommandInterpreter.cpp
+++ b/lldb/source/Interpreter/CommandInterpreter.cpp
@@ -1605,11 +1605,6 @@ Status CommandInterpreter::PreprocessCommand(std::string &command) {
         error.SetErrorStringWithFormat(
             "expression interrupted for the expression '%s'", expr_str.c_str());
         break;
-      case eExpressionThreadVanished:
-        error.SetErrorStringWithFormat(
-            "expression thread disappeared for the expression '%s'",
-            expr_str.c_str());
-        break;
       case eExpressionHitBreakpoint:
         error.SetErrorStringWithFormat(
             "expression hit breakpoint for the expression '%s'",


        


More information about the lldb-commits mailing list