summaryrefslogtreecommitdiffstats
path: root/lldb/source/Core/Module.cpp
diff options
context:
space:
mode:
authorArnaud A. de Grandmaison <arnaud.adegm@gmail.com>2014-03-22 20:23:26 +0000
committerArnaud A. de Grandmaison <arnaud.adegm@gmail.com>2014-03-22 20:23:26 +0000
commit62e5f4de3d968e8f1c6b620a0dc6324562720c9d (patch)
tree5ec8fa421ef91d17064be25978b625c9161d1b91 /lldb/source/Core/Module.cpp
parent44419fc3cdc126898caa87824287dd6065942a2e (diff)
downloadbcm5719-llvm-62e5f4de3d968e8f1c6b620a0dc6324562720c9d.tar.gz
bcm5719-llvm-62e5f4de3d968e8f1c6b620a0dc6324562720c9d.zip
Cleanup some dead assignements reported by scan-build
No functionnal change. llvm-svn: 204545
Diffstat (limited to 'lldb/source/Core/Module.cpp')
-rw-r--r--lldb/source/Core/Module.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/Module.cpp b/lldb/source/Core/Module.cpp
index 45ce08f6aab..588c3eacc11 100644
--- a/lldb/source/Core/Module.cpp
+++ b/lldb/source/Core/Module.cpp
@@ -959,7 +959,7 @@ Module::FindTypes (const SymbolContext& sc,
{
// The "type_name_cstr" will have been modified if we have a valid type class
// prefix (like "struct", "class", "union", "typedef" etc).
- num_matches = FindTypes_Impl(sc, ConstString(type_name_cstr), NULL, append, max_matches, types);
+ FindTypes_Impl(sc, ConstString(type_name_cstr), NULL, append, max_matches, types);
types.RemoveMismatchedTypes (type_class);
num_matches = types.GetSize();
}
OpenPOWER on IntegriCloud