File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
lldb/source/Plugins/ObjectFile/Mach-O Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2843,9 +2843,9 @@ void ObjectFileMachO::ParseSymtab(Symtab &symtab) {
28432843 symbol_name, symbol_name_non_abi_mangled,
28442844 type)) {
28452845 demangled_is_synthesized = true ;
2846- } else if (nlist.n_value != 0 )
2847- symbol_section = section_info.GetSection (
2848- nlist.n_sect , nlist.n_value );
2846+ } else if (nlist.n_value != 0 ) {
2847+ symbol_section = section_info.GetSection (
2848+ nlist.n_sect , nlist.n_value );
28492849 type = eSymbolTypeData;
28502850 }
28512851 break ;
@@ -3643,9 +3643,9 @@ void ObjectFileMachO::ParseSymtab(Symtab &symtab) {
36433643 if (TryParseV2ObjCMetadataSymbol (symbol_name,
36443644 symbol_name_non_abi_mangled, type)) {
36453645 demangled_is_synthesized = true ;
3646- } else if (nlist.n_value != 0 )
3647- symbol_section =
3648- section_info.GetSection (nlist.n_sect , nlist.n_value );
3646+ } else if (nlist.n_value != 0 ) {
3647+ symbol_section =
3648+ section_info.GetSection (nlist.n_sect , nlist.n_value );
36493649 type = eSymbolTypeData;
36503650 }
36513651 } break ;
You can’t perform that action at this time.
0 commit comments