Remove some debugging code that was accidentally left in.

llvm-svn: 341122
This commit is contained in:
Zachary Turner 2018-08-30 21:00:57 +00:00
parent d424c2a8a1
commit a1f57030c6
1 changed files with 0 additions and 11 deletions

View File

@ -520,17 +520,6 @@ Demangler::demangleRttiBaseClassDescriptorNode(ArenaAllocator &Arena,
return VSN;
}
void dump(Node *N) {
OutputStream OS = OutputStream::create(nullptr, nullptr, 1024);
N->output(OS, OF_Default);
OS << '\0';
char *Name = OS.getBuffer();
printf(Name);
printf("\n");
std::free(Name);
}
FunctionSymbolNode *Demangler::demangleInitFiniStub(StringView &MangledName,
bool IsDestructor) {
DynamicStructorIdentifierNode *DSIN =