Allow modification of callee

llvm-svn: 4257
This commit is contained in:
Chris Lattner 2002-10-22 15:57:58 +00:00
parent e50beac7ea
commit ef09736481
1 changed files with 2 additions and 0 deletions

View File

@ -436,6 +436,8 @@ public:
DSNodeHandle &getCallee() { return Callee; }
const DSNodeHandle &getRetVal() const { return RetVal; }
const DSNodeHandle &getCallee() const { return Callee; }
void setCallee(const DSNodeHandle &H) { Callee = H; }
unsigned getNumPtrArgs() const { return CallArgs.size(); }
Function *getResolvingCaller() const { return ResolvingCaller; }