From 7e8795fde4a3b3c4576e134467d39bc358ce547a Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Wed, 24 Jan 2018 00:15:53 +0000 Subject: [PATCH] [WebAssembly] Remove excess debugging. NFC. llvm-svn: 323286 --- lld/wasm/Writer.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/lld/wasm/Writer.cpp b/lld/wasm/Writer.cpp index 2fd296407b5b..8f50b136cb94 100644 --- a/lld/wasm/Writer.cpp +++ b/lld/wasm/Writer.cpp @@ -751,9 +751,7 @@ void Writer::assignIndexes() { if (Reloc.Type != R_WEBASSEMBLY_TABLE_INDEX_I32 && Reloc.Type != R_WEBASSEMBLY_TABLE_INDEX_SLEB) continue; - DEBUG(dbgs() << "getFunctionSymbol: " << Reloc.Index << "\n"); Symbol *Sym = File->getFunctionSymbol(Reloc.Index); - DEBUG(dbgs() << "gotFunctionSymbol: " << Sym->getName() << "\n"); if (Sym->hasTableIndex() || !Sym->hasOutputIndex()) continue; Sym->setTableIndex(TableIndex++);