From bd89a6ea1ce8d13c2abcddfd1f0126188e783481 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Wed, 28 Mar 2007 01:53:20 +0000 Subject: [PATCH] No need to generate the implementation keyword any more. Its frivolous. llvm-svn: 35405 --- lib/VMCore/AsmWriter.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index 0792550e1c5..d49898e2adc 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -842,8 +842,6 @@ void AssemblyWriter::printModule(const Module *M) { I != E; ++I) printGlobal(I); - Out << "\nimplementation ; Functions:\n"; - // Output all of the functions. for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I) printFunction(I);