aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/AsmWriter.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-02-10 20:42:57 +0000
committerDan Gohman <gohman@apple.com>2010-02-10 20:42:57 +0000
commit659d1e8bbbbd33c25fdbe38bad6cb166a635e516 (patch)
tree08f36f91d7420545e221fe28a4234be7df3cc5aa /lib/VMCore/AsmWriter.cpp
parent4207d6af5ec7695e201edb2f77646476e1d7c8b7 (diff)
downloadexternal_llvm-659d1e8bbbbd33c25fdbe38bad6cb166a635e516.zip
external_llvm-659d1e8bbbbd33c25fdbe38bad6cb166a635e516.tar.gz
external_llvm-659d1e8bbbbd33c25fdbe38bad6cb166a635e516.tar.bz2
Minor whitespace cleanups.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95801 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/AsmWriter.cpp')
-rw-r--r--lib/VMCore/AsmWriter.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp
index 5868170..7d6e0a7 100644
--- a/lib/VMCore/AsmWriter.cpp
+++ b/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.
///