[Lldb-commits] [lldb] r162794 - /lldb/trunk/source/Commands/CommandObjectTarget.cpp

Johnny Chen johnny.chen at apple.com
Tue Aug 28 14:01:31 PDT 2012


Author: johnny
Date: Tue Aug 28 16:01:31 2012
New Revision: 162794

URL: http://llvm.org/viewvc/llvm-project?rev=162794&view=rev
Log:
Fix a redundant computation.

Modified:
    lldb/trunk/source/Commands/CommandObjectTarget.cpp

Modified: lldb/trunk/source/Commands/CommandObjectTarget.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectTarget.cpp?rev=162794&r1=162793&r2=162794&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectTarget.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectTarget.cpp Tue Aug 28 16:01:31 2012
@@ -4049,7 +4049,7 @@
                             ModuleSP symfile_module_sp (new Module (symfile_spec, target->GetArchitecture()));
                             const UUID &symfile_uuid = symfile_module_sp->GetUUID();
                             StreamString ss_symfile_uuid;
-                            symfile_module_sp->GetUUID().Dump(&ss_symfile_uuid);
+                            symfile_uuid.Dump(&ss_symfile_uuid);
 
                             if (symfile_module_sp)
                             {





More information about the lldb-commits mailing list