mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
If merging two calls like: foo(A) and bar(B, C), make sure the result has two
arguments, not one. llvm-svn: 20728
This commit is contained in:
parent
3dd7af56a4
commit
7550f93ef5
@ -292,6 +292,9 @@ public:
|
||||
|
||||
for (unsigned a = 0; a != MinArgs; ++a)
|
||||
getPtrArg(a).mergeWith(CS.getPtrArg(a));
|
||||
|
||||
for (unsigned a = MinArgs, e = CS.getNumPtrArgs(); a != e; ++a)
|
||||
CallArgs.push_back(CS.getPtrArg(a));
|
||||
}
|
||||
|
||||
/// markReachableNodes - This method recursively traverses the specified
|
||||
|
Loading…
Reference in New Issue
Block a user