From b05ca44eb9489d65fde77e93968e04acc8c700ea Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 2 May 2002 19:11:29 +0000 Subject: [PATCH] The implementation keyword is no longer neccesary git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2434 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/AsmWriter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index 90ce6ba5175..bece7b8d725 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -504,7 +504,7 @@ void AssemblyWriter::printModule(const Module *M) { for_each(M->gbegin(), M->gend(), bind_obj(this, &AssemblyWriter::printGlobal)); - Out << "implementation\n"; + Out << "\n; Functions:\n"; // Output all of the functions... for_each(M->begin(), M->end(), bind_obj(this,&AssemblyWriter::printFunction)); -- 2.34.1