diff options
author | Dan Gohman <gohman@apple.com> | 2010-02-10 20:42:57 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-02-10 20:42:57 +0000 |
commit | bd11c41b91bbd17d8def251204cb092cbebc4ca6 (patch) | |
tree | 96f67eee9efb8d93907c23cf1986ba4fa3912649 /llvm/lib/VMCore/AsmWriter.cpp | |
parent | d64ce7b611eb08549a7db7cd9ce21497d6a06e6e (diff) | |
download | bcm5719-llvm-bd11c41b91bbd17d8def251204cb092cbebc4ca6.tar.gz bcm5719-llvm-bd11c41b91bbd17d8def251204cb092cbebc4ca6.zip |
Minor whitespace cleanups.
llvm-svn: 95801
Diffstat (limited to 'llvm/lib/VMCore/AsmWriter.cpp')
-rw-r--r-- | llvm/lib/VMCore/AsmWriter.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/VMCore/AsmWriter.cpp b/llvm/lib/VMCore/AsmWriter.cpp index 586817073bd..7d6e0a7d0bc 100644 --- a/llvm/lib/VMCore/AsmWriter.cpp +++ b/llvm/lib/VMCore/AsmWriter.cpp @@ -1252,15 +1252,14 @@ public: void printArgument(const Argument *FA, Attributes Attrs); void printBasicBlock(const BasicBlock *BB); void printInstruction(const Instruction &I); -private: +private: // printInfoComment - Print a little comment after the instruction indicating // which slot it occupies. void printInfoComment(const Value &V); }; } // end of anonymous namespace - void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType) { if (Operand == 0) { Out << "<null operand!>"; @@ -1689,7 +1688,6 @@ void AssemblyWriter::printBasicBlock(const BasicBlock *BB) { if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out); } - /// printInfoComment - Print a little comment after the instruction indicating /// which slot it occupies. /// |