OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DestI
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/Transforms/Utils/
CloneModule.cpp
94
Function::arg_iterator
DestI
= F->arg_begin();
97
DestI
->setName(J->getName());
98
VMap[J] =
DestI
++;
CloneFunction.cpp
161
Function::arg_iterator
DestI
= NewF->arg_begin();
165
DestI
->setName(I->getName()); // Copy the name over...
166
VMap[I] =
DestI
++; // Add mapping to VMap
/external/llvm/lib/Transforms/Scalar/
TailDuplication.cpp
161
Function::iterator
DestI
= Dest;
162
if (&*--
DestI
== BI->getParent()) {
176
DestI
= Dest;
177
if (++
DestI
!= Dest->getParent()->end()) {
178
BasicBlock *DestSucc =
DestI
;
Completed in 159 milliseconds