mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-07 14:33:15 +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:
parent
1a33e6eb74
commit
0e6949fe1c
@ -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; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user