From: Chris Lattner Date: Tue, 17 Jun 2003 21:44:51 +0000 (+0000) Subject: Make sure accessor is properly doxygenized. It wants two lines X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=57ec659810847be717059270aef647319f6498f5;p=oota-llvm.git Make sure accessor is properly doxygenized. It wants two lines git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6756 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/CallSite.h b/include/llvm/Support/CallSite.h index 5a5920962ec..faf6d0d278a 100644 --- a/include/llvm/Support/CallSite.h +++ b/include/llvm/Support/CallSite.h @@ -23,6 +23,7 @@ public: CallSite &operator=(const CallSite &CS) { I = CS.I; return *this; } /// getInstruction - Return the instruction this call site corresponds to + /// Instruction *getInstruction() const { return I; } /// getCalledValue - Return the pointer to function that is being called...