mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-03 10:54:42 +00:00
Add code to be able to merge two call sites
llvm-svn: 4685
This commit is contained in:
parent
f088bcac1c
commit
aaabf591d2
@ -218,6 +218,17 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
// MergeWith - Merge the return value and parameters of the these two call
|
||||
// sites.
|
||||
void mergeWith(DSCallSite &CS) {
|
||||
getRetVal().mergeWith(CS.getRetVal());
|
||||
unsigned MinArgs = getNumPtrArgs();
|
||||
if (CS.getNumPtrArgs() < MinArgs) MinArgs = CS.getNumPtrArgs();
|
||||
|
||||
for (unsigned a = 0; a != MinArgs; ++a)
|
||||
getPtrArg(a).mergeWith(CS.getPtrArg(a));
|
||||
}
|
||||
|
||||
bool operator<(const DSCallSite &CS) const {
|
||||
if (Callee < CS.Callee) return true; // This must sort by callee first!
|
||||
if (Callee > CS.Callee) return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user