From 0b6af79e627ca1222b1bf67dd555e41a3252ba77 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 8 Mar 2004 18:51:05 +0000 Subject: [PATCH] Add the ability to put an annotation at the end of a basic block as well. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12230 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Assembly/AsmAnnotationWriter.h | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/include/llvm/Assembly/AsmAnnotationWriter.h b/include/llvm/Assembly/AsmAnnotationWriter.h index 3beda6df03d..4700273b844 100644 --- a/include/llvm/Assembly/AsmAnnotationWriter.h +++ b/include/llvm/Assembly/AsmAnnotationWriter.h @@ -31,9 +31,15 @@ struct AssemblyAnnotationWriter { // the start of a function. virtual void emitFunctionAnnot(const Function *F, std::ostream &OS) {} - // emitBasicBlockAnnot - This may be implemented to emit a string right after - // the basic block label, but before the first instruction in the block. - virtual void emitBasicBlockAnnot(const BasicBlock *BB, std::ostream &OS) {} + // emitBasicBlockStartAnnot - This may be implemented to emit a string right + // after the basic block label, but before the first instruction in the block. + virtual void emitBasicBlockStartAnnot(const BasicBlock *BB, std::ostream &OS){ + } + + // emitBasicBlockEndAnnot - This may be implemented to emit a string right + // after the basic block. + virtual void emitBasicBlockEndAnnot(const BasicBlock *BB, std::ostream &OS){ + } // emitInstructionAnnot - This may be implemented to emit a string right // before an instruction is emitted. -- 2.34.1