mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-18 20:18:12 +00:00
wrap a long line
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20785 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cc59ed5379
commit
eb39492deb
@ -1329,7 +1329,8 @@ static bool PathExistsToClonedNode(const DSCallSite &CS,
|
||||
void DSGraph::getFunctionArgumentsForCall(Function *F,
|
||||
std::vector<DSNodeHandle> &Args) const {
|
||||
Args.push_back(getReturnNodeFor(*F));
|
||||
for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); AI != E; ++AI)
|
||||
for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end();
|
||||
AI != E; ++AI)
|
||||
if (isPointerType(AI->getType())) {
|
||||
Args.push_back(getNodeForValue(AI));
|
||||
assert(!Args.back().isNull() && "Pointer argument w/o scalarmap entry!?");
|
||||
|
Loading…
x
Reference in New Issue
Block a user