diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-17 21:44:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-17 21:44:51 +0000 |
commit | 57ec659810847be717059270aef647319f6498f5 (patch) | |
tree | a14b58619935181a926e7f7bce8c30a0a08c442a /include | |
parent | 95ab3d4bc492707bdb6a3e60cffabaa875c1f5e6 (diff) | |
download | external_llvm-57ec659810847be717059270aef647319f6498f5.zip external_llvm-57ec659810847be717059270aef647319f6498f5.tar.gz external_llvm-57ec659810847be717059270aef647319f6498f5.tar.bz2 |
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
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/CallSite.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Support/CallSite.h b/include/llvm/Support/CallSite.h index 5a59209..faf6d0d 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... |