diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-08-28 01:02:49 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-08-28 01:02:49 +0000 |
commit | 3a9ec2463ddeba0820f284e2952bd6919cd5e080 (patch) | |
tree | cf7c5fe955cfaf5d8f363b9d96323bfc3766cbcf /lib/VMCore | |
parent | dc87725902736ee4a843ee70a46627ea4abcc235 (diff) | |
download | external_llvm-3a9ec2463ddeba0820f284e2952bd6919cd5e080.zip external_llvm-3a9ec2463ddeba0820f284e2952bd6919cd5e080.tar.gz external_llvm-3a9ec2463ddeba0820f284e2952bd6919cd5e080.tar.bz2 |
For PR387:
Close out this long standing bug by removing the remaining overloaded
virtual functions in LLVM. The -Woverloaded-virtual option is now turned on.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29934 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/AsmWriter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index 890b598..f3bcfb5 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -1081,8 +1081,7 @@ void AssemblyWriter::printInfoComment(const Value &V) { } } -/// printInstruction - This member is called for each Instruction in a function.. -/// +// This member is called for each Instruction in a function.. void AssemblyWriter::printInstruction(const Instruction &I) { if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out); |