[Lldb-commits] [lldb] r192264 - Fixed a bug in the Materializer where we sent the

Sean Callanan scallanan at apple.com
Tue Oct 8 19:04:58 PDT 2013


Author: spyffe
Date: Tue Oct  8 21:04:57 2013
New Revision: 192264

URL: http://llvm.org/viewvc/llvm-project?rev=192264&view=rev
Log:
Fixed a bug in the Materializer where we sent the
wrong information to ValueObjectConstResult.

<rdar://problem/15101795>

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

Modified: lldb/trunk/source/Expression/Materializer.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Expression/Materializer.cpp?rev=192264&r1=192263&r2=192264&view=diff
==============================================================================
--- lldb/trunk/source/Expression/Materializer.cpp (original)
+++ lldb/trunk/source/Expression/Materializer.cpp Tue Oct  8 21:04:57 2013
@@ -839,7 +839,7 @@ public:
                                                             name,
                                                             address,
                                                             eAddressTypeLoad,
-                                                            ret->GetByteSize());
+                                                            map.GetAddressByteSize());
         }
         
         ret->ValueUpdated();





More information about the lldb-commits mailing list