summaryrefslogtreecommitdiff
path: root/include/llvm/Support/CallSite.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-06-17 21:44:51 +0000
committerChris Lattner <sabre@nondot.org>2003-06-17 21:44:51 +0000
commit57ec659810847be717059270aef647319f6498f5 (patch)
treea14b58619935181a926e7f7bce8c30a0a08c442a /include/llvm/Support/CallSite.h
parent95ab3d4bc492707bdb6a3e60cffabaa875c1f5e6 (diff)
downloadllvm-57ec659810847be717059270aef647319f6498f5.tar.gz
llvm-57ec659810847be717059270aef647319f6498f5.tar.bz2
llvm-57ec659810847be717059270aef647319f6498f5.tar.xz
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/llvm/Support/CallSite.h')
-rw-r--r--include/llvm/Support/CallSite.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Support/CallSite.h b/include/llvm/Support/CallSite.h
index 5a5920962e..faf6d0d278 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...