From: Chris Lattner Date: Thu, 2 May 2002 19:11:29 +0000 (+0000) Subject: The implementation keyword is no longer neccesary X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b05ca44eb9489d65fde77e93968e04acc8c700ea;p=oota-llvm.git The implementation keyword is no longer neccesary git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2434 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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));