Home
last modified time | relevance | path

Searched refs:newSrc (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DRandomIRBuilder.cpp225 Value *newSrc = RS.getSelection(); in newSource() local
229 if (!allowConstant && isa<Constant>(newSrc)) { in newSource()
230 Type *Ty = newSrc->getType(); in newSource()
232 AllocaInst *Alloca = createStackMemory(F, Ty, newSrc); in newSource()
234 newSrc = new LoadInst(Ty, Alloca, /*ArrLen,*/ "L", BB.getTerminator()); in newSource()
236 newSrc = new LoadInst(Ty, Alloca, /*ArrLen,*/ "L", &BB); in newSource()
239 return newSrc; in newSource()