commit | 11d6e5e09a4b0515091fd4fdcd8f12a535441dc7 | [log] [tgz] |
---|---|---|
author | Johnny Chen <johnny.chen@apple.com> | Tue Aug 28 21:01:31 2012 +0000 |
committer | Johnny Chen <johnny.chen@apple.com> | Tue Aug 28 21:01:31 2012 +0000 |
tree | 394f125bb866249ceffd3e24c9f85549fb2ea977 | |
parent | 915da3534f6024d9983e0ba94142936df8745562 [diff] [blame] |
Fix a redundant computation. git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@162794 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectTarget.cpp b/source/Commands/CommandObjectTarget.cpp index 92076d7..cc83190 100644 --- a/source/Commands/CommandObjectTarget.cpp +++ b/source/Commands/CommandObjectTarget.cpp
@@ -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) {