From: Chris Lattner Date: Mon, 8 Mar 2004 18:51:45 +0000 (+0000) Subject: Adjust to new interface X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=9f717ef279f4b82e28c341c98a9aa602f01f9b27;p=oota-llvm.git Adjust to new interface git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12231 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index 20f94b5bc93..fd3cda61480 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -752,11 +752,13 @@ void AssemblyWriter::printBasicBlock(const BasicBlock *BB) { Out << "\n"; - if (AnnotationWriter) AnnotationWriter->emitBasicBlockAnnot(BB, Out); + if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out); // Output all of the instructions in the basic block... for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I) printInstruction(*I); + + if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out); }