We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c85d04 commit e6fb012Copy full SHA for e6fb012
llvm/lib/Transforms/IPO/IROutliner.cpp
@@ -2286,9 +2286,9 @@ void IROutliner::deduplicateExtractedSections(
2286
// Create a set of BasicBlocks, one for each return block, to hold the
2287
// needed store instructions.
2288
DenseMap<Value *, BasicBlock *> NewBBs;
2289
- createAndInsertBasicBlocks(
2290
- CurrentGroup.EndBBs, NewBBs, CurrentGroup.OutlinedFunction,
2291
- "output_block_" + Twine(static_cast<unsigned>(Idx)));
+ createAndInsertBasicBlocks(CurrentGroup.EndBBs, NewBBs,
+ CurrentGroup.OutlinedFunction,
+ "output_block_" + Twine(Idx));
2292
replaceArgumentUses(*CurrentOS, NewBBs, OutputMappings);
2293
alignOutputBlockWithAggFunc(CurrentGroup, *CurrentOS, NewBBs,
2294
CurrentGroup.EndBBs, OutputMappings,
0 commit comments