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 cf2633d commit d53afd8Copy full SHA for d53afd8
llvm/lib/Target/PowerPC/PPCReduceCRLogicals.cpp
@@ -250,8 +250,7 @@ static bool splitMBB(BlockSplitInfo &BSI) {
250
251
// Set the call frame size on ThisMBB to the new basic blocks.
252
// See https://reviews.llvm.org/D156113.
253
- unsigned CallFrameSize = TII->getCallFrameSizeAt(ThisMBB->back());
254
- NewMBB->setCallFrameSize(CallFrameSize);
+ NewMBB->setCallFrameSize(TII->getCallFrameSizeAt(ThisMBB->back()));
255
256
LLVM_DEBUG(dbgs() << "After splitting, ThisMBB:\n"; ThisMBB->dump());
257
LLVM_DEBUG(dbgs() << "NewMBB:\n"; NewMBB->dump());
0 commit comments