mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-22 23:24:59 +00:00
Allow modification of callee
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4257 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -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; }
|
||||
|
@@ -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; }
|
||||
|
Reference in New Issue
Block a user