Skip to content

Commit d53afd8

Browse files
committed
address comment
1 parent cf2633d commit d53afd8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/Target/PowerPC/PPCReduceCRLogicals.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,8 +250,7 @@ static bool splitMBB(BlockSplitInfo &BSI) {
250250

251251
// Set the call frame size on ThisMBB to the new basic blocks.
252252
// See https://reviews.llvm.org/D156113.
253-
unsigned CallFrameSize = TII->getCallFrameSizeAt(ThisMBB->back());
254-
NewMBB->setCallFrameSize(CallFrameSize);
253+
NewMBB->setCallFrameSize(TII->getCallFrameSizeAt(ThisMBB->back()));
255254

256255
LLVM_DEBUG(dbgs() << "After splitting, ThisMBB:\n"; ThisMBB->dump());
257256
LLVM_DEBUG(dbgs() << "NewMBB:\n"; NewMBB->dump());

0 commit comments

Comments
 (0)