diff options
author | Chris Lattner <sabre@nondot.org> | 2010-09-02 22:42:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-09-02 22:42:07 +0000 |
commit | 0744bfa2a8552850d6bd4ca557be157051eee9bb (patch) | |
tree | 17d542e60cc9cbf7f7d77b011466e213965fe056 /llvm/lib/VMCore/AsmWriter.cpp | |
parent | 86599cc088419c6a7c0b0c0763d70a02536215f9 (diff) | |
download | bcm5719-llvm-0744bfa2a8552850d6bd4ca557be157051eee9bb.tar.gz bcm5719-llvm-0744bfa2a8552850d6bd4ca557be157051eee9bb.zip |
revert patch, need to update clang tests too
llvm-svn: 112895
Diffstat (limited to 'llvm/lib/VMCore/AsmWriter.cpp')
-rw-r--r-- | llvm/lib/VMCore/AsmWriter.cpp | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/llvm/lib/VMCore/AsmWriter.cpp b/llvm/lib/VMCore/AsmWriter.cpp index 3168ec2aa42..ce1b6f1e21e 100644 --- a/llvm/lib/VMCore/AsmWriter.cpp +++ b/llvm/lib/VMCore/AsmWriter.cpp @@ -1635,10 +1635,11 @@ void AssemblyWriter::printFunction(const Function *F) { if (F->hasGC()) Out << " gc \"" << F->getGC() << '"'; if (F->isDeclaration()) { - Out << '\n'; + Out << " ; [#uses=" << F->getNumUses() << "]\n"; // Output # uses } else { - Out << " {"; - // Output all of the function's basic blocks. + Out << " { ; [#uses=" << F->getNumUses() << ']'; // Output # uses + + // Output all of its basic blocks... for the function for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I) printBasicBlock(I); @@ -1687,7 +1688,7 @@ void AssemblyWriter::printBasicBlock(const BasicBlock *BB) { Out.PadToColumn(50); Out << "; Error: Block without parent!"; } else if (BB != &BB->getParent()->getEntryBlock()) { // Not the entry block? - // Output predecessors for the block. + // Output predecessors for the block... Out.PadToColumn(50); Out << ";"; const_pred_iterator PI = pred_begin(BB), PE = pred_end(BB); @@ -1725,6 +1726,13 @@ void AssemblyWriter::printInfoComment(const Value &V) { AnnotationWriter->printInfoComment(V, Out); return; } + + if (V.getType()->isVoidTy()) return; + + Out.PadToColumn(50); + Out << "; <"; + TypePrinter.print(V.getType(), Out); + Out << "> [#uses=" << V.getNumUses() << ']'; // Output # uses } // This member is called for each Instruction in a function.. |