diff options
author | Chris Lattner <sabre@nondot.org> | 2002-05-02 19:11:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-05-02 19:11:29 +0000 |
commit | b05ca44eb9489d65fde77e93968e04acc8c700ea (patch) | |
tree | 4c913142cb5e146411f082acbff59970a3481a67 /lib/VMCore | |
parent | 0e73ce6d94886f8fa64a5007e52ad11ec891d3ea (diff) | |
download | external_llvm-b05ca44eb9489d65fde77e93968e04acc8c700ea.zip external_llvm-b05ca44eb9489d65fde77e93968e04acc8c700ea.tar.gz external_llvm-b05ca44eb9489d65fde77e93968e04acc8c700ea.tar.bz2 |
The implementation keyword is no longer neccesary
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2434 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/AsmWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index 90ce6ba..bece7b8 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)); |