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 @@ -1627,7 +1627,7 @@ void CodeExtractor::emitFunctionBody(
1627
1627
const ValueSet &inputs, const ValueSet &outputs,
1628
1628
const ValueSet &StructValues, Function *newFunction,
1629
1629
StructType *StructArgTy, BasicBlock *header, const ValueSet &SinkingCands,
1630
- SmallVector <Value *> &NewValues) {
1630
+ SmallVectorImpl <Value *> &NewValues) {
1631
1631
Function *oldFunction = header->getParent ();
1632
1632
LLVMContext &Context = oldFunction->getContext ();
1633
1633
You can’t perform that action at this time.
0 commit comments