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
This commit is contained in:
Chris Lattner 2003-06-17 21:44:51 +00:00
parent 95ab3d4bc4
commit 57ec659810

View File

@ -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...