aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-05-02 19:11:29 +0000
committerChris Lattner <sabre@nondot.org>2002-05-02 19:11:29 +0000
commitb05ca44eb9489d65fde77e93968e04acc8c700ea (patch)
tree4c913142cb5e146411f082acbff59970a3481a67 /lib/VMCore
parent0e73ce6d94886f8fa64a5007e52ad11ec891d3ea (diff)
downloadexternal_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.cpp2
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));