summaryrefslogtreecommitdiff
path: root/include/llvm/Instructions.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-10-18 05:08:07 +0000
committerChris Lattner <sabre@nondot.org>2009-10-18 05:08:07 +0000
commit14d8038518c535551b4f5eaf2d5caab038a0ed31 (patch)
tree56222c6a833e0aceac6c1d3667e7f8e163c0c167 /include/llvm/Instructions.h
parent76596c86c4233525b81d65cdd639e667fe42d5e8 (diff)
downloadllvm-14d8038518c535551b4f5eaf2d5caab038a0ed31.tar.gz
llvm-14d8038518c535551b4f5eaf2d5caab038a0ed31.tar.bz2
llvm-14d8038518c535551b4f5eaf2d5caab038a0ed31.tar.xz
punctuate properly
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84407 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Instructions.h')
-rw-r--r--include/llvm/Instructions.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h
index 373e4e3bec..dbeb9e12ee 100644
--- a/include/llvm/Instructions.h
+++ b/include/llvm/Instructions.h
@@ -1100,11 +1100,11 @@ public:
}
/// getCalledValue - Get a pointer to the function that is invoked by this
- /// instruction
+ /// instruction.
const Value *getCalledValue() const { return Op<0>(); }
Value *getCalledValue() { return Op<0>(); }
- /// setCalledFunction - Set the function called
+ /// setCalledFunction - Set the function called.
void setCalledFunction(Value* Fn) {
Op<0>() = Fn;
}