@@ -1082,8 +1082,9 @@ void FIRRTLModuleLowering::emitInstanceChoiceIncludeFile(
10821082 }
10831083
10841084 // Create the emit.file operation at the top level
1085- auto emitFile = emit::FileOp::create (builder, circuit.getLoc (),
1086- includeFileName, circuitNamespace.newName (includeFileName));
1085+ auto emitFile =
1086+ emit::FileOp::create (builder, circuit.getLoc (), includeFileName,
1087+ circuitNamespace.newName (includeFileName));
10871088 OpBuilder::InsertionGuard g (builder);
10881089 builder.setInsertionPointToStart (&emitFile.getBodyRegion ().front ());
10891090
@@ -1092,8 +1093,8 @@ void FIRRTLModuleLowering::emitInstanceChoiceIncludeFile(
10921093 SmallString<256 > headerComment;
10931094 llvm::raw_svector_ostream os (headerComment);
10941095 os << " // Specialization file for public module: "
1095- << publicModuleName.getValue () << " \n " ;
1096- os << " // Option: " << optionName.getValue ()
1096+ << publicModuleName.getValue () << " \n "
1097+ << " // Option: " << optionName.getValue ()
10971098 << " , Case: " << caseName.getValue () << " \n " ;
10981099 emit::VerbatimOp::create (builder, circuit.getLoc (),
10991100 builder.getStringAttr (headerComment));
@@ -1142,7 +1143,8 @@ void FIRRTLModuleLowering::emitInstanceChoiceIncludeFile(
11421143
11431144 // Set output file attribute .svh files should be excluded from file list
11441145 emitFile->setAttr (" output_file" , hw::OutputFileAttr::getFromFilename (
1145- builder.getContext (), includeFileName, /* excludeFromFileList=*/ true ));
1146+ builder.getContext (), includeFileName,
1147+ /* excludeFromFileList=*/ true ));
11461148}
11471149
11481150// / Creates one include file per public module and option case following the
0 commit comments