File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -327,11 +327,12 @@ class StructInliner {
327327 // Create a clone of the source function (must do the whole function not just the body
328328 // region because `inlineCall()` expects the Region to have a parent op) and update field
329329 // references to the old struct fields to instead use the new struct fields.
330- FuncDefOp srcFuncClone =
331- FieldRefRewriter::cloneWithFieldRefUpdate ( std::make_unique<FieldRefRewriter>(
330+ FuncDefOp srcFuncClone = FieldRefRewriter::cloneWithFieldRefUpdate (
331+ std::make_unique<FieldRefRewriter>(
332332 srcFunc, selfFieldRefOp.getComponent (),
333333 this ->destToSrcToClone .at (this ->data .getDef (selfFieldRefOp))
334- ));
334+ )
335+ );
335336 this ->processCloneBeforeInlining (srcFuncClone);
336337
337338 // Inline the cloned function in place of `callOp`
You can’t perform that action at this time.
0 commit comments