File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
include/llvm/Transforms/Utils Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ class CodeExtractorAnalysisCache {
291
291
const ValueSet &StructValues, Function *newFunction,
292
292
StructType *StructArgTy, BasicBlock *header,
293
293
const ValueSet &SinkingCands,
294
- SmallVector <Value *> &NewValues);
294
+ SmallVectorImpl <Value *> &NewValues);
295
295
296
296
// / Generates a Basic Block that calls the extracted function.
297
297
CallInst *emitReplacerCall (const ValueSet &inputs, const ValueSet &outputs,
Original file line number Diff line number Diff line change @@ -1630,7 +1630,7 @@ void CodeExtractor::emitFunctionBody(
1630
1630
const ValueSet &inputs, const ValueSet &outputs,
1631
1631
const ValueSet &StructValues, Function *newFunction,
1632
1632
StructType *StructArgTy, BasicBlock *header, const ValueSet &SinkingCands,
1633
- SmallVector <Value *> &NewValues) {
1633
+ SmallVectorImpl <Value *> &NewValues) {
1634
1634
Function *oldFunction = header->getParent ();
1635
1635
LLVMContext &Context = oldFunction->getContext ();
1636
1636
You can’t perform that action at this time.
0 commit comments