Skip to content

Commit 7c35db0

Browse files
committed
Fix windows build after r366791
A side effect of this commit was that it exchanged the order of types and compile units in the output of SymbolVendor::Dump. A couple of PDB tests dependened on that to assert the links between the two. While it wouldn't be too hard to update the tests, the change of ordering was not something I intended to do with that patch, and is easy to restore the original order, so I do just that. llvm-svn: 366798
1 parent 53f9fec commit 7c35db0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lldb/source/Symbol/SymbolVendor.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,10 +354,12 @@ void SymbolVendor::Dump(Stream *s) {
354354
}
355355
}
356356
s->EOL();
357+
s->PutCString("Types:\n");
358+
m_type_list.Dump(s, show_context);
359+
s->EOL();
357360
if (m_sym_file_up)
358361
m_sym_file_up->Dump(*s);
359362
s->IndentMore();
360-
m_type_list.Dump(s, show_context);
361363

362364
if (Symtab *symtab = GetSymtab())
363365
symtab->Dump(s, nullptr, eSortOrderNone);

0 commit comments

Comments
 (0)