[Lldb-commits] [lldb] r179918 - Fixed an error message.

Sean Callanan scallanan at apple.com
Fri Apr 19 19:39:25 PDT 2013


Author: spyffe
Date: Fri Apr 19 21:39:24 2013
New Revision: 179918

URL: http://llvm.org/viewvc/llvm-project?rev=179918&view=rev
Log:
Fixed an error message.

Modified:
    lldb/trunk/source/Expression/IRInterpreter.cpp

Modified: lldb/trunk/source/Expression/IRInterpreter.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Expression/IRInterpreter.cpp?rev=179918&r1=179917&r2=179918&view=diff
==============================================================================
--- lldb/trunk/source/Expression/IRInterpreter.cpp (original)
+++ lldb/trunk/source/Expression/IRInterpreter.cpp Fri Apr 19 21:39:24 2013
@@ -1300,7 +1300,7 @@ IRInterpreter::Interpret (llvm::Module &
                     if (log)
                         log->Printf("Couldn't write to a region on behalf of a StoreInst");
                     error.SetErrorToGenericError();
-                    error.SetErrorString(memory_read_error);
+                    error.SetErrorString(memory_write_error);
                     return false;
                 }
                 





More information about the lldb-commits mailing list