projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0e73ce6
)
The implementation keyword is no longer neccesary
author
Chris Lattner
<sabre@nondot.org>
Thu, 2 May 2002 19:11:29 +0000
(19:11 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Thu, 2 May 2002 19:11:29 +0000
(19:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2434
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/VMCore/AsmWriter.cpp
patch
|
blob
|
history
diff --git
a/lib/VMCore/AsmWriter.cpp
b/lib/VMCore/AsmWriter.cpp
index 90ce6ba517576b0ba600adda81647a8326f48953..bece7b8d7254a37c0d3ce6ccd176b775c0559ecc 100644
(file)
--- 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));