punctuate properly

llvm-svn: 84407
This commit is contained in:
Chris Lattner 2009-10-18 05:08:07 +00:00
parent 00c6ac7bc2
commit 3462d75aab
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}