From: Chris Lattner Date: Sun, 18 Oct 2009 05:08:07 +0000 (+0000) Subject: punctuate properly X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=14d8038518c535551b4f5eaf2d5caab038a0ed31;p=oota-llvm.git punctuate properly git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84407 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index 373e4e3becd..dbeb9e12eec 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; }