diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-12-29 04:10:59 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-12-29 04:10:59 +0000 |
commit | c25ec252fd64d2c60486a669242ae4b616cf810b (patch) | |
tree | 84af2ab479ddbddb18f6e86f6ad523e3e036cf85 /include/llvm | |
parent | 6f85b9d74345b5a4bc085a243847deed717adaf5 (diff) | |
download | external_llvm-c25ec252fd64d2c60486a669242ae4b616cf810b.zip external_llvm-c25ec252fd64d2c60486a669242ae4b616cf810b.tar.gz external_llvm-c25ec252fd64d2c60486a669242ae4b616cf810b.tar.bz2 |
Doxygenify a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32765 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Instructions.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index c786623..cbcc097 100644 --- a/include/llvm/Instructions.h +++ b/include/llvm/Instructions.h @@ -729,7 +729,8 @@ public: return static_cast<Function*>(dyn_cast<Function>(getOperand(0))); } - // getCalledValue - Get a pointer to a method that is invoked by this inst. + /// getCalledValue - Get a pointer to the function that is invoked by this + /// instruction inline const Value *getCalledValue() const { return getOperand(0); } inline Value *getCalledValue() { return getOperand(0); } |