mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-02 00:36:36 +00:00
Fix bug with prior checkin
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4242 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b0a37b70e8
commit
65d6a9ee47
@ -365,8 +365,8 @@ template <typename CopyFunctor>
|
||||
DSCallSite::DSCallSite(const DSCallSite &FromCall, CopyFunctor nodeCopier)
|
||||
: Inst(FromCall.Inst) {
|
||||
|
||||
RetVal = nodeCopier(&RetVal);
|
||||
Callee = nodeCopier(&Callee);
|
||||
RetVal = nodeCopier(&FromCall.RetVal);
|
||||
Callee = nodeCopier(&FromCall.Callee);
|
||||
|
||||
CallArgs.reserve(FromCall.CallArgs.size());
|
||||
for (unsigned j = 0, ej = FromCall.CallArgs.size(); j != ej; ++j)
|
||||
|
Loading…
Reference in New Issue
Block a user