diff options
| author | Aidan Dodds <aidan@codeplay.com> | 2015-11-10 14:10:57 +0000 |
|---|---|---|
| committer | Aidan Dodds <aidan@codeplay.com> | 2015-11-10 14:10:57 +0000 |
| commit | c78e89962a64879a6967e4434c4e64747b3d3e4b (patch) | |
| tree | 6c8356a3dfc636a0c81aa3668df252a3e21703d0 /lldb | |
| parent | 01c3692a105d04b87173ce8e875c484fb294ee52 (diff) | |
| download | bcm5719-llvm-c78e89962a64879a6967e4434c4e64747b3d3e4b.tar.gz bcm5719-llvm-c78e89962a64879a6967e4434c4e64747b3d3e4b.zip | |
Differential Revision: http://reviews.llvm.org/D14538
llvm-svn: 252605
Diffstat (limited to 'lldb')
| -rw-r--r-- | lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp index 1186fed2b92..70293384e7f 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp +++ b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp @@ -2711,7 +2711,7 @@ SymbolFileDWARF::FindFunctions (const ConstString &name, // TODO: The arch in the object file isn't correct for MSVC // binaries on windows, we should find a way to make it // correct and handle those symbols as well. - if (sc_list.GetSize() == 0) + if (sc_list.GetSize() == original_size) { ArchSpec arch; if (!parent_decl_ctx && |

