diff options
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp b/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp index 657423f974a..2cef2d0a537 100644 --- a/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp +++ b/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp @@ -1105,8 +1105,7 @@ void PPCLinuxAsmPrinter::EmitInstruction(const MachineInstr *MI) { // of instructions change. const MachineInstr *Next = [&] { MachineBasicBlock::const_iterator It(MI); - const MachineBasicBlock *MBB = MI->getParent(); - assert(It != MBB->end()); + assert(It != MI->getParent()->end()); ++It; assert(It->isReturn()); return &*It; |