summaryrefslogtreecommitdiffstats
path: root/lldb/source/Commands
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2012-04-06 17:41:13 +0000
committerGreg Clayton <gclayton@apple.com>2012-04-06 17:41:13 +0000
commit29399a24c62fd8408bf5ea172d946f0742b173ea (patch)
treebbecbce88e86111e4eb4c5c1a0403a551c1b6226 /lldb/source/Commands
parent55995ebb58d852fcdf08b4d0e57d74a51973e811 (diff)
downloadbcm5719-llvm-29399a24c62fd8408bf5ea172d946f0742b173ea.tar.gz
bcm5719-llvm-29399a24c62fd8408bf5ea172d946f0742b173ea.zip
In a prior commit, I changed the parameters around on a ModuleList::FindTypes where the old parameters that existing clients were using would have been compatible, so I renamed ModuleList::FindTypes to ModuleList::FindTypes2. Then I made fixes and verified I updated and fixed all client code, but I forgot to rename the function back to ModuleList::FindTypes(). I am doing that now and also cleaning up the C++ dynamic type code a bit.
llvm-svn: 154182
Diffstat (limited to 'lldb/source/Commands')
-rw-r--r--lldb/source/Commands/CommandObjectMemory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectMemory.cpp b/lldb/source/Commands/CommandObjectMemory.cpp
index 6da176dbf87..558f8409148 100644
--- a/lldb/source/Commands/CommandObjectMemory.cpp
+++ b/lldb/source/Commands/CommandObjectMemory.cpp
@@ -465,7 +465,7 @@ public:
}
if (type_list.GetSize() == 0)
{
- target->GetImages().FindTypes2 (sc,
+ target->GetImages().FindTypes (sc,
lookup_type_name,
exact_match,
1,
OpenPOWER on IntegriCloud