@@ -299,20 +299,24 @@ class BasicBlock final : public Value, // Basic blocks are data objects also
299299 // / Returns a pointer to the first instruction in this block that is not a
300300 // / PHINode or a debug intrinsic, or any pseudo operation if \c SkipPseudoOp
301301 // / is true.
302- InstListType::const_iterator getFirstNonPHIOrDbg (bool SkipPseudoOp = true ) const ;
302+ InstListType::const_iterator
303+ getFirstNonPHIOrDbg (bool SkipPseudoOp = true ) const ;
303304 InstListType::iterator getFirstNonPHIOrDbg (bool SkipPseudoOp = true ) {
304- return static_cast <const BasicBlock *>(this )->getFirstNonPHIOrDbg (
305- SkipPseudoOp).getNonConst ();
305+ return static_cast <const BasicBlock *>(this )
306+ ->getFirstNonPHIOrDbg (SkipPseudoOp)
307+ .getNonConst ();
306308 }
307309
308310 // / Returns a pointer to the first instruction in this block that is not a
309311 // / PHINode, a debug intrinsic, or a lifetime intrinsic, or any pseudo
310312 // / operation if \c SkipPseudoOp is true.
311313 InstListType::const_iterator
312314 getFirstNonPHIOrDbgOrLifetime (bool SkipPseudoOp = true ) const ;
313- InstListType::iterator getFirstNonPHIOrDbgOrLifetime (bool SkipPseudoOp = true ) {
314- return static_cast <const BasicBlock *>(this )->getFirstNonPHIOrDbgOrLifetime (
315- SkipPseudoOp).getNonConst ();
315+ InstListType::iterator
316+ getFirstNonPHIOrDbgOrLifetime (bool SkipPseudoOp = true ) {
317+ return static_cast <const BasicBlock *>(this )
318+ ->getFirstNonPHIOrDbgOrLifetime (SkipPseudoOp)
319+ .getNonConst ();
316320 }
317321
318322 // / Returns an iterator to the first instruction in this block that is
0 commit comments